zmq4.3 changed default buffer size to -1 instead of 0 (#667)

This commit is contained in:
Dhanya Thattil 2023-02-15 09:45:02 +01:00 committed by GitHub
parent cb8e4365e3
commit 4dac9f2193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ namespace sls {
// high water mark for gui
#define DEFFAULT_LOW_ZMQ_HWM (25)
#define DEFAULT_LOW_ZMQ_HWM_BUFFERSIZE (1024 * 1024) // 1MB
#define DEFAULT_ZMQ_BUFFERSIZE (0) // os default
#define DEFAULT_ZMQ_BUFFERSIZE (-1) // os default
/** zmq header structure */
struct zmqHeader {