Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Cannot use ZeroMQ 4.2 sockopt ZMQ_ROUTER_HANDOVER #595

Open
WindzCUHK opened this issue Jul 10, 2017 · 1 comment
Open

Cannot use ZeroMQ 4.2 sockopt ZMQ_ROUTER_HANDOVER #595

WindzCUHK opened this issue Jul 10, 2017 · 1 comment

Comments

@WindzCUHK
Copy link

WindzCUHK commented Jul 10, 2017

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?

  • orginal code
...
opts_int.insert(42); // ZMQ_IPV6

opts_int64.insert(3); // ZMQ_SWAP
...
  • code after insert
...
opts_int.insert(42); // ZMQ_IPV6
opts_int.insert(56); // ZMQ_ROUTER_HANDOVER

opts_int64.insert(3); // ZMQ_SWAP
...
@lgeiger
Copy link
Contributor

lgeiger commented Jul 10, 2017

You can try zeromq.js it has the same API, bundles a prebuilt version of zeromq 4.2.2 and has support for ZMQ_ROUTER_HANDOVER.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants