mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-02 05:46:24 +01:00
Merge pull request #668 from mrothe/no-public-tests
tests: don't listen on public ports
This commit is contained in:
@@ -90,7 +90,7 @@ int main (void)
|
||||
int as_server = 1;
|
||||
rc = zmq_setsockopt (server, ZMQ_PLAIN_SERVER, &as_server, sizeof (int));
|
||||
assert (rc == 0);
|
||||
rc = zmq_bind (server, "tcp://*:9998");
|
||||
rc = zmq_bind (server, "tcp://127.0.0.1:9998");
|
||||
assert (rc == 0);
|
||||
|
||||
char username [256];
|
||||
|
||||
Reference in New Issue
Block a user