Adjust settings to new config

This commit is contained in:
2020-05-08 14:25:01 +02:00
parent 79c6edbfb6
commit 4912bbe38d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ void* LiveRecvModule::connect_socket(size_t module_id)
throw runtime_error(zmq_strerror(errno));
}
int rcvhwm = STREAM_RCV_QUEUE_SIZE;
int rcvhwm = STREAM_RCVHWM;
if (zmq_setsockopt(sock, ZMQ_RCVHWM, &rcvhwm, sizeof(rcvhwm)) != 0) {
throw runtime_error(zmq_strerror(errno));
}