2010-02-10 16:18:46 +01:00
|
|
|
zmq_pgm(7)
|
|
|
|
==========
|
2010-01-13 15:15:01 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2010-03-09 18:47:31 +01:00
|
|
|
zmq_pgm - 0MQ reliable multicast transport using PGM
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2010-03-09 18:47:31 +01:00
|
|
|
PGM (Pragmatic General Multicast) is a protocol for reliable multicast
|
|
|
|
transport of data over IP networks.
|
2010-01-13 15:15:01 +01:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
0MQ implements two variants of PGM, the standard protocol where PGM datagrams
|
|
|
|
are layered directly on top of IP datagrams as defined by RFC 3208 (the 'pgm'
|
|
|
|
transport) and "Encapsulated PGM" where PGM datagrams are encapsulated inside
|
|
|
|
UDP datagrams (the 'epgm' transport).
|
2010-01-14 14:11:34 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
The 'pgm' and 'epgm' transports can only be used with the 'ZMQ_PUB' and
|
|
|
|
'ZMQ_SUB' socket types.
|
2010-01-13 15:15:01 +01:00
|
|
|
|
2011-03-23 17:01:39 +01:00
|
|
|
Further, PGM sockets are rate limited by default. For details, refer to the
|
|
|
|
'ZMQ_RATE', and 'ZMQ_RECOVERY_IVL' options documented in
|
2010-03-09 18:47:31 +01:00
|
|
|
linkzmq:zmq_setsockopt[3].
|
2010-01-13 15:15:01 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
CAUTION: The 'pgm' transport implementation requires access to raw IP sockets.
|
|
|
|
Additional privileges may be required on some operating systems for this
|
|
|
|
operation. Applications not requiring direct interoperability with other PGM
|
|
|
|
implementations are encouraged to use the 'epgm' transport instead which does
|
|
|
|
not require any special privileges.
|
2010-01-13 15:15:01 +01:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
ADDRESSING
|
|
|
|
----------
|
|
|
|
A 0MQ address string consists of two parts as follows:
|
|
|
|
'transport'`://`'endpoint'. The 'transport' part specifies the underlying
|
|
|
|
transport protocol to use. For the standard PGM protocol, 'transport' shall be
|
|
|
|
set to `pgm`. For the "Encapsulated PGM" protocol 'transport' shall be set to
|
|
|
|
`epgm`. The meaning of the 'endpoint' part for both the 'pgm' and 'epgm'
|
|
|
|
transport is defined below.
|
2010-01-13 15:15:01 +01:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Connecting a socket
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
When connecting a socket to a peer address using _zmq_connect()_ with the 'pgm'
|
|
|
|
or 'epgm' transport, the 'endpoint' shall be interpreted as an 'interface'
|
|
|
|
followed by a semicolon, followed by a 'multicast address', followed by a colon
|
|
|
|
and a port number.
|
|
|
|
|
|
|
|
An 'interface' may be specified by either of the following:
|
2010-01-13 15:15:01 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
* The interface name as defined by the operating system.
|
2010-09-04 15:54:34 +02:00
|
|
|
* The primary IPv4 address assigned to the interface, in it's numeric
|
2010-03-09 18:47:31 +01:00
|
|
|
representation.
|
2010-01-13 15:15:01 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
NOTE: Interface names are not standardised in any way and should be assumed to
|
|
|
|
be arbitrary and platform dependent. On Win32 platforms no short interface
|
|
|
|
names exist, thus only the primary IPv4 address may be used to specify an
|
|
|
|
'interface'.
|
|
|
|
|
2010-09-04 15:54:34 +02:00
|
|
|
A 'multicast address' is specified by an IPv4 multicast address in it's numeric
|
2010-03-09 18:47:31 +01:00
|
|
|
representation.
|
|
|
|
|
|
|
|
|
|
|
|
WIRE FORMAT
|
|
|
|
-----------
|
2010-12-01 10:57:37 +01:00
|
|
|
Consecutive PGM datagrams are interpreted by 0MQ as a single continuous stream
|
2010-03-09 18:47:31 +01:00
|
|
|
of data where 0MQ messages are not necessarily aligned with PGM datagram
|
|
|
|
boundaries and a single 0MQ message may span several PGM datagrams. This stream
|
|
|
|
of data consists of 0MQ messages encapsulated in 'frames' as described in
|
|
|
|
linkzmq:zmq_tcp[7].
|
|
|
|
|
2010-03-10 23:18:08 +01:00
|
|
|
|
|
|
|
PGM datagram payload
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
The following ABNF grammar represents the payload of a single PGM datagram as
|
|
|
|
used by 0MQ:
|
|
|
|
|
|
|
|
....
|
|
|
|
datagram = (offset data)
|
|
|
|
offset = 2OCTET
|
|
|
|
data = *OCTET
|
|
|
|
....
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
In order for late joining consumers to be able to identify message boundaries,
|
|
|
|
each PGM datagram payload starts with a 16-bit unsigned integer in network byte
|
|
|
|
order specifying either the offset of the first message 'frame' in the datagram
|
2010-03-10 23:20:43 +01:00
|
|
|
or containing the value `0xFFFF` if the datagram contains solely an
|
|
|
|
intermediate part of a larger message.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2011-04-01 11:53:51 +02:00
|
|
|
Note that offset specifies where the first message begins rather than the first
|
|
|
|
message part. Thus, if there are trailing message parts at the beginning of
|
|
|
|
the packet the offset ignores them and points to first initial message part
|
|
|
|
in the packet.
|
|
|
|
|
2010-03-10 23:18:08 +01:00
|
|
|
The following diagram illustrates the layout of a single PGM datagram payload:
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
....
|
2010-03-10 23:18:08 +01:00
|
|
|
+------------------+----------------------+
|
|
|
|
| offset (16 bits) | data |
|
|
|
|
+------------------+----------------------+
|
2010-03-09 18:47:31 +01:00
|
|
|
....
|
|
|
|
|
2010-03-10 23:18:08 +01:00
|
|
|
The following diagram further illustrates how three example 0MQ frames are laid
|
|
|
|
out in consecutive PGM datagram payloads:
|
|
|
|
|
|
|
|
....
|
|
|
|
First datagram payload
|
|
|
|
+--------------+-------------+---------------------+
|
|
|
|
| Frame offset | Frame 1 | Frame 2, part 1 |
|
|
|
|
| 0x0000 | (Message 1) | (Message 2, part 1) |
|
|
|
|
+--------------+-------------+---------------------+
|
|
|
|
|
|
|
|
Second datagram payload
|
|
|
|
+--------------+---------------------+
|
|
|
|
| Frame offset | Frame 2, part 2 |
|
|
|
|
| 0xFFFF | (Message 2, part 2) |
|
|
|
|
+--------------+---------------------+
|
|
|
|
|
|
|
|
Third datagram payload
|
|
|
|
+--------------+----------------------------+-------------+
|
|
|
|
| Frame offset | Frame 2, final 8 bytes | Frame 3 |
|
|
|
|
| 0x0008 | (Message 2, final 8 bytes) | (Message 3) |
|
|
|
|
+--------------+----------------------------+-------------+
|
|
|
|
....
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
EXAMPLE
|
|
|
|
-------
|
|
|
|
.Connecting a socket
|
|
|
|
----
|
|
|
|
/* Connecting to the multicast address 239.192.1.1, port 5555, */
|
2010-12-01 10:57:37 +01:00
|
|
|
/* using the first Ethernet network interface on Linux */
|
2010-03-09 18:47:31 +01:00
|
|
|
/* and the Encapsulated PGM protocol */
|
|
|
|
rc = zmq_connect(socket, "epgm://eth0;239.192.1.1:5555");
|
|
|
|
assert (rc == 0);
|
|
|
|
/* Connecting to the multicast address 239.192.1.1, port 5555, */
|
|
|
|
/* using the network interface with the address 192.168.1.1 */
|
|
|
|
/* and the standard PGM protocol */
|
|
|
|
rc = zmq_connect(socket, "pgm://192.168.1.1;239.192.1.1:5555");
|
|
|
|
assert (rc == 0);
|
2010-02-10 16:18:46 +01:00
|
|
|
----
|
2010-01-13 15:15:01 +01:00
|
|
|
|
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2010-03-09 18:47:31 +01:00
|
|
|
linkzmq:zmq_connect[3]
|
|
|
|
linkzmq:zmq_setsockopt[3]
|
2010-02-10 16:18:46 +01:00
|
|
|
linkzmq:zmq_tcp[7]
|
|
|
|
linkzmq:zmq_ipc[7]
|
|
|
|
linkzmq:zmq_inproc[7]
|
2010-03-09 18:47:31 +01:00
|
|
|
linkzmq:zmq[7]
|
2010-01-13 15:15:01 +01:00
|
|
|
|
2010-09-04 15:55:11 +02:00
|
|
|
AUTHORS
|
|
|
|
-------
|
|
|
|
The 0MQ documentation was written by Martin Sustrik <sustrik@250bpm.com> and
|
2011-12-18 11:19:55 +01:00
|
|
|
Martin Lucina <martin@lucina.net>.
|