From e85227d0153a6be99ea2f9edf7bfb2b4da53fbaa Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 18 May 2020 16:59:57 +0200 Subject: [PATCH] Add compression header size to props --- core-buffer/include/buffer_config.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index a743b2f..43a71d7 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -64,6 +64,9 @@ namespace core_buffer { // Size of buffer between the receiving and sending part. const int STREAM_FASTQUEUE_SLOTS = 5; + // Size of compression header in bytes. + const int WRITER_COMPRESSION_HEADER_BYTES = 12; + // Writer RECV queue on ZMQ. const int WRITER_RCVHWM = 100;