diff options
author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-08-09 11:57:21 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-08-09 11:57:21 +0200 |
commit | 3147ff8523d9736039c4582f5f62c323b23940d1 (patch) | |
tree | 73787985938ab24d737f360c615bf22efd68e0bc /include | |
parent | bde396f1561fb5e57e6e413a40d904586e186d42 (diff) |
getsockopt implemented
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/zmq.h b/include/zmq.h index 63c8434..0bada1e 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -162,6 +162,7 @@ ZMQ_EXPORT void *zmq_socket (void *context, int type); ZMQ_EXPORT int zmq_close (void *s); // Sets an option on the socket. +// EINVAL - unknown option, a value with incorrect length or an invalid value. ZMQ_EXPORT int zmq_setsockopt (void *s, int option_, void *optval_, size_t optvallen_); |