Skip to content

Commit 3746e5c

Browse files
authored
Merge pull request #406 from gummif/gfa/rfc-mme
Problem: Missing reference to rfc
2 parents a3e5b54 + acd7104 commit 3746e5c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

zmq_addon.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ send_multipart(socket_ref s, Range &&msgs, send_flags flags = send_flags::none)
167167
can not fit in an unsigned 32 bit integer.
168168
169169
The encoding is compatible with that used by the CZMQ function
170-
zmsg_encode(). Each part consists of a size followed by the data.
170+
zmsg_encode(), see https://rfc.zeromq.org/spec/50/.
171+
Each part consists of a size followed by the data.
171172
These are placed contiguously into the output message. A part of
172173
size less than 255 bytes will have a single byte size value.
173174
Larger parts will have a five byte size value with the first byte
@@ -241,7 +242,7 @@ message_t encode(const Range &parts)
241242
lead to exceeding the message data bounds.
242243
243244
The decoding assumes the message is encoded in the manner
244-
performed by zmq::encode().
245+
performed by zmq::encode(), see https://rfc.zeromq.org/spec/50/.
245246
*/
246247
template<class OutputIt> OutputIt decode(const message_t &encoded, OutputIt out)
247248
{

0 commit comments

Comments
 (0)