From f36a49de6d4a318f45941171675ce7f3338e7345 Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Fri, 20 Sep 2013 23:16:29 +0200 Subject: [PATCH] Move away from port 8080 which is occupied on some boxes --- tests/test_stream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_stream.cpp b/tests/test_stream.cpp index 4ec8d446..2eaac50c 100644 --- a/tests/test_stream.cpp +++ b/tests/test_stream.cpp @@ -173,12 +173,12 @@ test_stream_to_stream (void) void *server = zmq_socket (ctx, ZMQ_STREAM); assert (server); - rc = zmq_bind (server, "tcp://127.0.0.1:8080"); + rc = zmq_bind (server, "tcp://127.0.0.1:9080"); assert (rc == 0); void *client = zmq_socket (ctx, ZMQ_STREAM); assert (client); - rc = zmq_connect (client, "tcp://localhost:8080"); + rc = zmq_connect (client, "tcp://localhost:9080"); assert (rc == 0); // It would be less surprising to get an empty message instead // of having to fetch the identity like this [PH 2013/06/27]