summaryrefslogtreecommitdiff
path: root/doc/zmq_bind.txt
diff options
context:
space:
mode:
authorPieter Hintjens <ph@imatix.com>2010-08-04 14:43:33 +0200
committerPieter Hintjens <ph@imatix.com>2010-08-04 14:43:33 +0200
commit77a3c36ff1f11215229a4efdb821a3cb83a9d6fc (patch)
tree6204936adfd1c7d7921c32542d420fec719a0807 /doc/zmq_bind.txt
parent6cd90304476c1c6873d67068009def63e520b848 (diff)
Various changes to documentation project:
* Added documentation for zmq_deviced, which we're developing * Created consistent page footer in documentation template * Page footer notes doc authors and copyright statement
Diffstat (limited to 'doc/zmq_bind.txt')
-rw-r--r--doc/zmq_bind.txt9
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/zmq_bind.txt b/doc/zmq_bind.txt
index a74e81d..62c4584 100644
--- a/doc/zmq_bind.txt
+++ b/doc/zmq_bind.txt
@@ -68,8 +68,8 @@ assert (socket);
/* Bind it to a in-process transport with the address 'my_publisher' */
int rc = zmq_bind (socket, "inproc://my_publisher");
assert (rc == 0);
-/* Bind it to a TCP transport on port 5555 of the 'eth0' interface */
-rc = zmq_bind (socket, "tcp://eth0:5555");
+/* Bind it to a TCP transport on port 5555 of all local interfaces */
+rc = zmq_bind (socket, "tcp://*:5555");
assert (rc == 0);
----
@@ -80,8 +80,3 @@ linkzmq:zmq_connect[3]
linkzmq:zmq_socket[3]
linkzmq:zmq[7]
-
-AUTHORS
--------
-The 0MQ documentation was written by Martin Sustrik <sustrik@250bpm.com> and
-Martin Lucina <mato@kotelna.sk>.