> Did you remember to set the option before you make your bind/connect?
Yes.
>
> Did you also enable zmq_req_correlate?
Yes.
>
> Do you have a code sample? Also, other people have had trouble with this
> feature before too, so you might try reading what they wrote last time.
Here is the sample in Python:
import zmq
context = zmq.Context.instance()
req = context.socket(zmq.REQ)
req.req_correlate = True
req.req_relaxed = True
req.send(b"request")
req.poll(100, zmq.POLLOUT)
>> 0
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev