From 18d222515f1caa4f4075660298ae696a43aa4f7b Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Mon, 23 Jun 2014 20:24:36 +0200 Subject: [PATCH] Fixed typo in doc example --- doc/zmq_tcp.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/zmq_tcp.txt b/doc/zmq_tcp.txt index 0185674d..4b85b534 100644 --- a/doc/zmq_tcp.txt +++ b/doc/zmq_tcp.txt @@ -69,7 +69,7 @@ EXAMPLES .Assigning a local address to a socket ---- // TCP port 5555 on all available interfaces -rc = zmq_bind(socket, "tcp:/// :5555"); +rc = zmq_bind(socket, "tcp://*:5555"); assert (rc == 0); // TCP port 5555 on the local loop-back interface on all platforms rc = zmq_bind(socket, "tcp://127.0.0.1:5555");