Tagged Questions
2
votes
1answer
153 views
seems that my receive method does't get packet on multicast socket in java
I have a problem with receive method while using multicast socket in java. there are some hosts that they want to have a group chat using multicast socket.two threads (Read & Write) are started on ...
0
votes
1answer
2k views
How to implement a multicast socket in c++
I'm a c# programmer and i need to implement a multicast socket in c++.
I've try to google search it and didnt find much help.
So if someone could give me some links to a good c++ multicast socket ...
3
votes
2answers
1k views
Is Java MulticastSocket threadsafe?
I have two threads.
First one sends datagrams with a MulticastSocket in loop; the second thread receives datagrams using the same instance of MulticastSocket in loop.
It seems to be working properly, ...