I try to use the new constant ZMQ_ROUTER_HANDOVER in zeromq 4.1+ inside method zmq_setsockopt(),
but it throw Invalid argument error to me.
I inserted a line in binding.cc to make it works. Is it the suggested way to do so?
...
opts_int.insert(42); // ZMQ_IPV6
opts_int64.insert(3); // ZMQ_SWAP
...
...
opts_int.insert(42); // ZMQ_IPV6
opts_int.insert(56); // ZMQ_ROUTER_HANDOVER
opts_int64.insert(3); // ZMQ_SWAP
...