mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
Fixed issue #293
This commit is contained in:
parent
1e4c5b293a
commit
6dd102cded
@ -1,6 +1,6 @@
|
||||
/*
|
||||
Copyright (c) 2007-2012 iMatix Corporation
|
||||
Copyright (c) 2009-2011 250bpm s.r.o.
|
||||
Copyright (c) 2007-2009 iMatix Corporation
|
||||
Copyright (c) 2011 VMware, Inc.
|
||||
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
||||
|
||||
@ -89,14 +89,14 @@ bool zmq::encoder_t::message_ready ()
|
||||
// message size. In both cases 'flags' field follows.
|
||||
if (size < 255) {
|
||||
tmpbuf [0] = (unsigned char) size;
|
||||
tmpbuf [1] = (in_progress.flags () & ~msg_t::shared);
|
||||
tmpbuf [1] = (in_progress.flags () & msg_t::more);
|
||||
next_step (tmpbuf, 2, &encoder_t::size_ready,
|
||||
!(in_progress.flags () & msg_t::more));
|
||||
}
|
||||
else {
|
||||
tmpbuf [0] = 0xff;
|
||||
put_uint64 (tmpbuf + 1, size);
|
||||
tmpbuf [9] = (in_progress.flags () & ~msg_t::shared);
|
||||
tmpbuf [9] = (in_progress.flags () & msg_t::more);
|
||||
next_step (tmpbuf, 10, &encoder_t::size_ready,
|
||||
!(in_progress.flags () & msg_t::more));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user