1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

zeromq: increase maximum message size

This commit is contained in:
Steffen Vogel 2017-08-23 15:48:34 +02:00
parent fc53728b34
commit 41ceea7f48

View file

@ -446,7 +446,7 @@ int zeromq_write(struct node *n, struct sample *smps[], unsigned cnt)
size_t wbytes;
zmq_msg_t m;
char data[1500];
char data[4096];
ret = io_format_sprint(z->format, data, sizeof(data), &wbytes, smps, cnt, IO_FORMAT_ALL);
if (ret <= 0)