mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-07 03:22:50 +02:00
tests: don't listen on public ports
This commit is contained in:
@@ -109,7 +109,7 @@ int main (void)
|
||||
assert (rc == 0);
|
||||
rc = zmq_setsockopt (server, ZMQ_IDENTITY, "IDENT", 6);
|
||||
assert (rc == 0);
|
||||
rc = zmq_bind (server, "tcp://*:9998");
|
||||
rc = zmq_bind (server, "tcp://127.0.0.1:9998");
|
||||
assert (rc == 0);
|
||||
|
||||
// Check CURVE security with valid credentials
|
||||
|
Reference in New Issue
Block a user