Details
-
Type: Bug
-
Status: Resolved
-
Priority: Default
-
Resolution: Fixed
-
Affects Version/s: 1.0.2
-
Fix Version/s: 1.1.0
-
Component/s: None
-
Labels:None
Description
MulticastEndpoint method connect creates MulticastSocket as
new MulticastSocket(port)
and so our connection will receive all messages received on that port.
should be
new MulticastSocket(new InetSocketAddress(group, port));
to listen packets just from this group and port.