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

This reverts commit da0efaa81771aba497a961d70f2166f500a52afd.
This commit is contained in:
Pieter Hintjens 2013-01-08 09:18:38 +01:00
parent aff1406713
commit d997d88096

View File

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