引自:http://linux.die.net/man/7/zmq_epgm
zmq_pgm - 0MQ reliable multicast transport using PGM
PGM (Pragmatic General Multicast) is a protocol for reliable multicast transport of data over IP networks.
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 (thepgm transport) and "Encapsulated PGM" or EPGM where PGM datagrams are encapsulated inside UDP datagrams (theepgm transport).
The pgm and epgm transports can only be used with the ZMQ_PUB andZMQ_SUB socket types.
Further, PGM sockets are rate limited by default. For details, refer to the ZMQ_RATE, and ZMQ_RECOVERY_IVL options documented in zmq_setsockopt(3).
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.
A 0MQ endpoint is a string consisting of a transport:// followed by anaddress. The transport specifies the underlying protocol to use. Theaddress specifies the transport-specific address to connect to.
For the PGM transport, the transport is pgm, and for the EPGM protocol the transport is epgm. The meaning of theaddress part is defined below.
Connecting a socket
An interface may be specified by either of the following:
• The interface name as defined by the operating system. • The primary IPv4 address assigned to the interface, in it's numeric representation. NoteInterface 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. The interface part can be omitted, in that case the default one will be selected.
A multicast address is specified by an IPv4 multicast address in it's numeric representation.Consecutive PGM datagrams are interpreted by 0MQ as a single continuous stream 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 zmq_tcp(7).
PGM datagram payload
datagram = (offset data) offset = 2OCTET data = *OCTET
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.
The following diagram illustrates the layout of a single PGM datagram payload:
+------------------+----------------------+ | offset (16 bits) | data | +------------------+----------------------+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) | +--------------+----------------------------+-------------+
Connecting a socket.
// Connecting to the multicast address 239.192.1.1, port 5555, // using the first Ethernet network interface on Linux // 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);