LMAX-Exchange/angler

multicast socket addresses are not reported properly

Closed this issue · 2 comments

multicast socket addresses are not reported properly
final DatagramChannel channel = DatagramChannel.open(StandardProtocolFamily.INET);
channel.bind(new InetSocketAddress(port));
channel.join(InetAddress.getByName("239.192.100.45"), networkInterface);

Socket address will be reported as 0.0.0.0/port in the above scenario.

expected behaviour