Rename read block size for sf_replay

This commit is contained in:
2020-04-29 14:11:32 +02:00
parent 406c92e3a6
commit 6d62e54a7b
3 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ void receive_replay(
void *sockets[n_modules];
for (size_t i = 0; i < n_modules; i++) {
sockets[i] = zmq_socket(ctx, ZMQ_PULL);
int rcvhwm = REPLAY_BLOCK_SIZE;
int rcvhwm = REPLAY_READ_BLOCK_SIZE;
if (zmq_setsockopt(sockets[i], ZMQ_RCVHWM, &rcvhwm,
sizeof(rcvhwm)) != 0) {
throw runtime_error(strerror(errno));