Old change to move ports off 5555 (was conflicting with other stuff)

This commit is contained in:
Pieter Hintjens 2013-01-08 09:09:27 +01:00
parent b0f0d3fcb4
commit da0efaa817

View File

@ -53,7 +53,7 @@ int main (void)
val = 0;
rc = zmq_setsockopt(to, ZMQ_LINGER, &val, sizeof(val));
assert (rc == 0);
rc = zmq_bind(to, "tcp://*:6555");
rc = zmq_bind(to, "tcp://*:5555");
assert (rc == 0);
// Create a socket pushing to two endpoints - only 1 message should arrive.