On 8 February 2013 11:41, Divya Mohan <[email protected]> wrote:

> zmq_bind(pub_socket ,"epgm://127.0.0.1;239.192.1.1:5580");
> zmq_connect(sub_socket,"epgm://127.0.0.1;239.192.1.1:5580" );
>
>
It's probably not a good idea to do this: use a different port for each
socket.

Localhost UDP on Linux easily suffers great packet loss presumably due to
buffer overrun at really low data rates.

What you are likely seeing with two sockets is that reliability is not
functioning because the IP stack will not multiplex packets on the same
port to multiple receivers.

-- 
Steve-o
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Reply via email to