diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2011-06-20 13:36:18 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2011-06-20 13:36:18 +0200 |
commit | a28928fe376f73ef8ca683523102908616445ada (patch) | |
tree | 8b7c55897fe8bdbd5b1cf408d3080c4c24467104 /include | |
parent | f437c9ed9b604912287aa6c96557261fc966e7fc (diff) |
Introduce ZMQ_ROUTER and ZMQ_DEALER sockets
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
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 3d40c08..7de421b 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -158,6 +158,8 @@ ZMQ_EXPORT int zmq_term (void *context); #define ZMQ_PUSH 8 #define ZMQ_XPUB 9 #define ZMQ_XSUB 10 +#define ZMQ_ROUTER 11 +#define ZMQ_DEALER 12 /* Socket options. */ #define ZMQ_AFFINITY 4 |