diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/zmq.h b/include/zmq.h index 6f8e766..cd1bc90 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -216,8 +216,10 @@ ZMQ_EXPORT int zmq_getsockopt (void *s, int option, void *optval, size_t *optvallen); ZMQ_EXPORT int zmq_bind (void *s, const char *addr); ZMQ_EXPORT int zmq_connect (void *s, const char *addr); -ZMQ_EXPORT int zmq_send (void *s, zmq_msg_t *msg, int flags); -ZMQ_EXPORT int zmq_recv (void *s, zmq_msg_t *msg, int flags); +ZMQ_EXPORT int zmq_send (void *s, const void *buf, size_t len, int flags); +ZMQ_EXPORT int zmq_recv (void *s, void *buf, size_t len, int flags); +ZMQ_EXPORT int zmq_sendmsg (void *s, zmq_msg_t *msg, int flags); +ZMQ_EXPORT int zmq_recvmsg (void *s, zmq_msg_t *msg, int flags); /******************************************************************************/ /* I/O multiplexing. */ |