diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/zmq.h b/include/zmq.h index 3d641ef..e2b5436 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -187,6 +187,8 @@ ZMQ_EXPORT void *zmq_socket (void *context, int type); ZMQ_EXPORT int zmq_close (void *s); ZMQ_EXPORT int zmq_setsockopt (void *s, int option, const void *optval, size_t optvallen); +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); |