Merge pull request #668 from mrothe/no-public-tests

tests: don't listen on public ports
This commit is contained in:
Richard Newton
2013-09-18 04:09:51 -07:00
14 changed files with 23 additions and 23 deletions

View File

@@ -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];