Skip to content
This repository was archived by the owner on Apr 24, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions binding.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1536,6 +1536,7 @@ namespace zmq {
opts_int.insert(51); //ZMQ_PROBE_ROUTER
opts_binary.insert(55); // ZMQ_ZAP_DOMAIN
opts_int.insert(66); //ZMQ_HANDSHAKE_IVL
opts_int.insert(56); // ZMQ_ROUTER_HANDOVER
#endif

NODE_DEFINE_CONSTANT(target, ZMQ_CAN_DISCONNECT);
Expand Down
1 change: 1 addition & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ var longOptions = {
, ZMQ_ZAP_DOMAIN: 55
, ZMQ_IO_THREADS: 1
, ZMQ_MAX_SOCKETS: 2
, ZMQ_ROUTER_HANDOVER: 56
};

Object.keys(longOptions).forEach(function(name){
Expand Down
2 changes: 2 additions & 0 deletions windows/include/zmq.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,8 @@ ZMQ_EXPORT int zmq_msg_set (zmq_msg_t *msg, int option, int optval);
#define ZMQ_REQ_RELAXED 53
#define ZMQ_CONFLATE 54
#define ZMQ_ZAP_DOMAIN 55
#define ZMQ_ROUTER_HANDOVER 56


/* Message options */
#define ZMQ_MORE 1
Expand Down