Skip to content

Commit

Permalink
Merge pull request #59 from dquam/patch-1
Browse files Browse the repository at this point in the history
Fix usage of zmq_msg_recv and zmq_recvmsg
  • Loading branch information
c-rack committed Nov 14, 2015
2 parents 7c3d374 + baeaebc commit bad35bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zmq.hpp
Expand Up @@ -88,7 +88,7 @@ typedef struct {

// Avoid using deprecated message receive function when possible
#if ZMQ_VERSION < ZMQ_MAKE_VERSION(3, 2, 0)
# define zmq_msg_recv zmq_recvmsg
# define zmq_msg_recv(msg, socket, flags) zmq_recvmsg(socket, msg, flags)
#endif


Expand Down Expand Up @@ -663,7 +663,7 @@ namespace zmq
while (true) {
zmq_msg_t eventMsg;
zmq_msg_init (&eventMsg);
rc = zmq_msg_recv (s, &eventMsg, 0);
rc = zmq_msg_recv (&eventMsg, s, 0);
if (rc == -1 && zmq_errno() == ETERM)
break;
assert (rc != -1);
Expand All @@ -680,7 +680,7 @@ namespace zmq
#ifdef ZMQ_NEW_MONITOR_EVENT_LAYOUT
zmq_msg_t addrMsg;
zmq_msg_init (&addrMsg);
rc = zmq_msg_recv (s, &addrMsg, 0);
rc = zmq_msg_recv (&addrMsg, s, 0);
if (rc == -1 && zmq_errno() == ETERM)
break;
assert (rc != -1);
Expand Down

0 comments on commit bad35bd

Please sign in to comment.