Disable reconnection option

Add value -1 to the ZMQ_RECONNECT_IVL to disable the reconnection algorithm
This commit is contained in:
Emmanuel Taurel
2012-03-20 09:22:27 +01:00
parent 8665f9a0b6
commit 107581213c
4 changed files with 5 additions and 4 deletions

View File

@@ -140,7 +140,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
errno = EINVAL;
return -1;
}
if (*((int*) optval_) < 0) {
if (*((int*) optval_) < -1) {
errno = EINVAL;
return -1;
}