summaryrefslogtreecommitdiff
path: root/doc/zmq_tcp.7
diff options
context:
space:
mode:
Diffstat (limited to 'doc/zmq_tcp.7')
-rw-r--r--doc/zmq_tcp.720
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/zmq_tcp.7 b/doc/zmq_tcp.7
index 3d4129b..31430a0 100644
--- a/doc/zmq_tcp.7
+++ b/doc/zmq_tcp.7
@@ -2,12 +2,12 @@
.\" Title: zmq_tcp
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
-.\" Date: 06/04/2010
+.\" Date: 09/06/2010
.\" Manual: 0MQ Manual
-.\" Source: 0MQ 2.0.7
+.\" Source: 0MQ 2.0.9
.\" Language: English
.\"
-.TH "ZMQ_TCP" "7" "06/04/2010" "0MQ 2\&.0\&.7" "0MQ Manual"
+.TH "ZMQ_TCP" "7" "09/06/2010" "0MQ 2\&.0\&.9" "0MQ Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -49,7 +49,8 @@ An \fIinterface\fR may be specified by either of the following:
.sp -1
.IP \(bu 2.3
.\}
-The interface name as defined by the operating system\&.
+The wildcard
+*, meaning all available interfaces\&.
.RE
.sp
.RS 4
@@ -60,7 +61,7 @@ The interface name as defined by the operating system\&.
.sp -1
.IP \(bu 2.3
.\}
-The primary IPv4 address assigned to the interface, in it\(cqs numeric representation\&.
+The primary IPv4 address assigned to the interface, in its numeric representation\&.
.RE
.sp
.RS 4
@@ -71,8 +72,7 @@ The primary IPv4 address assigned to the interface, in it\(cqs numeric represent
.sp -1
.IP \(bu 2.3
.\}
-The wildcard
-*, meaning that the interface address is unspecified\&.
+The interface name as defined by the operating system\&.
.RE
.if n \{\
.sp
@@ -194,15 +194,15 @@ The following diagram illustrates the layout of a frame with a \fIpayload length
.RS 4
.\}
.nf
+/* TCP port 5555 on all available interfaces */
+rc = zmq_bind(socket, "tcp://*:5555");
+assert (rc == 0);
/* TCP port 5555 on the local loopback interface on all platforms */
rc = zmq_bind(socket, "tcp://127\&.0\&.0\&.1:5555");
assert (rc == 0);
/* TCP port 5555 on the first ethernet network interface on Linux */
rc = zmq_bind(socket, "tcp://eth0:5555");
assert (rc == 0);
-/* TCP port 5555 with an unspecified interface */
-rc = zmq_bind(socket, "tcp://*:5555");
-assert (rc == 0);
.fi
.if n \{\
.RE