Commit 908d6b67 authored by Jens Auer's avatar Jens Auer

Update options.cpp

Fixed ZMQ_TCP_RECV_BUFFER set case.
parent d2516a9c
...@@ -285,7 +285,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_, ...@@ -285,7 +285,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
case ZMQ_TCP_RECV_BUFFER: case ZMQ_TCP_RECV_BUFFER:
if (is_int && (value >= 0 && value <= 10) ) { if (is_int && (value >= 0 && value <= 10) ) {
tcp_send_buffer_size = static_cast<int>(std::pow(2, value)) * 1024; tcp_recv_buffer_size = static_cast<int>(std::pow(2, value)) * 1024;
} }
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment