cppzmq icon indicating copy to clipboard operation
cppzmq copied to clipboard

missing ZMQ_IDENTITY in zmq::sockopt

Open thierryba opened this issue 5 years ago • 2 comments

I just wanted to switch from 4.6 to 4.7.1 but I'm failing to do so because setsockopt(ZMQ_IDENTITY...) is deprecated but there is no replacement.

thierryba avatar Oct 21 '20 07:10 thierryba

ZMQ_IDENTITY is deprecated, but you can use socket.set(zmq::sockopt::routing_id) for the same functionality.

gummif avatar Oct 22 '20 21:10 gummif