From 704b952274b7bfe2952f564d6d81dff1f279a453 Mon Sep 17 00:00:00 2001 From: Ian Barber Date: Tue, 12 Jun 2012 15:49:18 +0100 Subject: [PATCH] Add reference to the inproc documentation The previous note in connect introduced but did not elaborate on the requirement to bind before connect in inproc. As that discussion is in detail in the inproc docs link to there. --- doc/zmq_connect.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/zmq_connect.txt b/doc/zmq_connect.txt index eb5af872..d9c37cd4 100644 --- a/doc/zmq_connect.txt +++ b/doc/zmq_connect.txt @@ -42,7 +42,8 @@ Thus a successful invocation of _zmq_connect()_ does not indicate that a physical connection was or can actually be established. Because of this, for most socket types the order in which a listening socket is bound and a connecting socket is connected does not matter. However, for inproc:// scheme sockets, the zmq_bind() -must be executed before any sockets zmq_connect() to that endpoint +must be executed before any sockets zmq_connect() to that endpoint. Refer to +linkzmq:zmq_inproc[7] for more details. RETURN VALUE