Tagged Questions
1
vote
1answer
133 views
MulticastSocket.receive() hangs when I try to receive packets from a server on a network with an IP that is not 192.168.X.X
I'm having this issue on my Windows 7 machine where a call to MulticastSocket.receive() in Java will hang indefinitely (it never receives the packets) when I try to listen in on a server connected to ...
-1
votes
1answer
76 views
udp multicasting using MAC address [closed]
i want to use udp multicasting in my program but none of the devices has an ip address. can i do the multicasting using MAC address instead?
any sort of help would be appreciated.thanx
1
vote
3answers
4k views
How to minimize UDP packet loss
I am receiving ~3000 UDP packets per second, each of them having a size of ~200bytes. I wrote a java application which listens to those UDP packets and just writes the data to a file. Then the server ...
-3
votes
1answer
499 views
client server socket programming
Hii all
I am novice in socket programming..
I had two programs. RECEIVE and SENDRECEIVE.
In RECEIVE I simply write the code for receiving data from a program acting as server using resvfrom(.....) ...
1
vote
0answers
685 views
SSDP Get Shared folder list using M-SEARCH?
I am using SSDP to send discover request using M-SEARCH to get list of services present.
My requirement is like i want to get list of share folders also which are present in that server.
Currently , ...
1
vote
1answer
1k views
Java: Determine receiving address when receiving with MulticastSocket
I am using MulticastSocket to receive UDP Multicast packets. How can I determine to which address such a packet was sent? With the methods provided, I am only able to determine the sender address.
Of ...