Hello, I'm tunneling into a machine, and binding the remote port 3000 to the
local port 3000, but unfortunately I'm receiving an error when I start the
server:
```zmq.error.ZMQError: Address already in use
```
The code (python):import zmqcontext = zmq.Context()socket =
context.socket(zmq.REP)socket.bind("tcp://0.0.0.0:4000")# doesn't make it past
thisĀ
If I change it to "socket.connect('tcp://0.0.0.0:4000')", it doesn't throw this
error. Why is this?
Thank you_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev