2010-02-10 16:18:46 +01:00
|
|
|
zmq_connect(3)
|
|
|
|
==============
|
|
|
|
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2012-10-27 02:43:19 +02:00
|
|
|
zmq_connect - create outgoing connection from socket
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2010-05-28 01:38:43 +02:00
|
|
|
*int zmq_connect (void '*socket', const char '*endpoint');*
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2012-10-27 02:43:19 +02:00
|
|
|
The _zmq_connect()_ function connects the 'socket' to an 'endpoint' and then
|
|
|
|
accepts incoming connections on that endpoint.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
The 'endpoint' is a string consisting of a 'transport'`://` followed by an
|
|
|
|
'address'. The 'transport' specifies the underlying protocol to use. The
|
|
|
|
'address' specifies the transport-specific address to connect to.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
0MQ provides the the following transports:
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-09-04 15:54:34 +02:00
|
|
|
'tcp':: unicast transport using TCP, see linkzmq:zmq_tcp[7]
|
2012-10-27 02:43:19 +02:00
|
|
|
'ipc':: local inter-process communication transport, see linkzmq:zmq_ipc[7]
|
|
|
|
'inproc':: local in-process (inter-thread) communication transport, see linkzmq:zmq_inproc[7]
|
2010-09-04 15:54:34 +02:00
|
|
|
'pgm', 'epgm':: reliable multicast transport using PGM, see linkzmq:zmq_pgm[7]
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
Every 0MQ socket type except 'ZMQ_PAIR' supports one-to-many and many-to-one
|
|
|
|
semantics. The precise semantics depend on the socket type and are defined in
|
|
|
|
linkzmq:zmq_socket[3].
|
|
|
|
|
|
|
|
NOTE: for most transports and socket types the connection is not performed
|
|
|
|
immediately but as needed by 0MQ. Thus a successful call to _zmq_connect()_
|
|
|
|
does not mean that the connection was or could actually be established.
|
|
|
|
Because of this, for most transports and socket types the order in which
|
|
|
|
a 'server' socket is bound and a 'client' socket is connected to it does not
|
|
|
|
matter. The first exception is when using the inproc:// transport: you must
|
|
|
|
call _zmq_bind()_ before calling _zmq_connect()_. The second exception are
|
|
|
|
_ZMQ_PAIR_ sockets, which do not automatically reconnect to endpoints.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
NOTE: following a _zmq_connect()_, the socket enters its normal 'ready' state.
|
|
|
|
By contrast, following a _zmq_bind()_ alone, the socket enters a 'mute' state
|
|
|
|
in which the socket blocks or drops messages according to the socket type, as
|
|
|
|
defined in linkzmq:zmq_socket[3].
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
RETURN VALUE
|
|
|
|
------------
|
2012-10-27 02:43:19 +02:00
|
|
|
The _zmq_connect()_ function returns zero if successful. Otherwise it returns
|
|
|
|
`-1` and sets 'errno' to one of the values defined below.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
------
|
2011-07-11 16:05:04 +02:00
|
|
|
*EINVAL*::
|
|
|
|
The endpoint supplied is invalid.
|
2010-02-10 16:18:46 +01:00
|
|
|
*EPROTONOSUPPORT*::
|
2010-03-09 18:47:31 +01:00
|
|
|
The requested 'transport' protocol is not supported.
|
2010-02-10 16:18:46 +01:00
|
|
|
*ENOCOMPATPROTO*::
|
2010-03-09 18:47:31 +01:00
|
|
|
The requested 'transport' protocol is not compatible with the socket type.
|
2010-04-12 09:25:04 +02:00
|
|
|
*ETERM*::
|
2010-06-01 22:22:29 +02:00
|
|
|
The 0MQ 'context' associated with the specified 'socket' was terminated.
|
2011-04-09 09:35:34 +02:00
|
|
|
*ENOTSOCK*::
|
|
|
|
The provided 'socket' was invalid.
|
2010-09-09 08:25:00 +02:00
|
|
|
*EMTHREAD*::
|
|
|
|
No I/O thread is available to accomplish the task.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
EXAMPLE
|
|
|
|
-------
|
2010-03-09 18:47:31 +01:00
|
|
|
.Connecting a subscriber socket to an in-process and a TCP transport
|
2010-02-10 16:18:46 +01:00
|
|
|
----
|
2010-03-09 18:47:31 +01:00
|
|
|
/* Create a ZMQ_SUB socket */
|
|
|
|
void *socket = zmq_socket (context, ZMQ_SUB);
|
|
|
|
assert (socket);
|
2010-05-28 01:38:43 +02:00
|
|
|
/* Connect it to an in-process transport with the address 'my_publisher' */
|
2010-03-09 18:47:31 +01:00
|
|
|
int rc = zmq_connect (socket, "inproc://my_publisher");
|
2010-02-10 16:18:46 +01:00
|
|
|
assert (rc == 0);
|
2010-03-09 18:47:31 +01:00
|
|
|
/* Connect it to the host server001, port 5555 using a TCP transport */
|
|
|
|
rc = zmq_connect (socket, "tcp://server001:5555");
|
2010-02-10 16:18:46 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkzmq:zmq_bind[3]
|
|
|
|
linkzmq:zmq_socket[3]
|
|
|
|
linkzmq:zmq[7]
|
|
|
|
|
|
|
|
|
2010-09-04 15:55:11 +02:00
|
|
|
AUTHORS
|
|
|
|
-------
|
2012-10-27 02:43:19 +02:00
|
|
|
This 0MQ manual page was written by Pieter Hintjens <ph@imatix.com>,
|
|
|
|
Martin Sustrik <sustrik@250bpm.com> and Martin Lucina <mato@kotelna.sk>.
|