HiIn an McastServiceImpl#setupSocket method, if the user configures the 
mcastBindAddress, it will use the socket to bind to this address. But, in the 
code below, it uses the "address" field while creating the socket. Is this 
correct ?

if (mcastBindAddress != null) {
 try {
                log.info(sm.getString("mcastServiceImpl.bind", address, 
Integer.toString(port)));
                socket = new MulticastSocket(new 
InetSocketAddress(address,port));
            } catch (BindException e) {
Regards.Gurkan

Reply via email to