From 46c622f2568b2e7fabfcbc9845b128e3ca5c282d Mon Sep 17 00:00:00 2001 From: DL6ER Date: Tue, 3 Dec 2019 22:40:26 +0000 Subject: [PATCH] Keep up to 64 lines of dnsmasq messages in the FIFO buffer. Signed-off-by: DL6ER --- src/api/ftl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/ftl.h b/src/api/ftl.h index c64b97b8..c359be78 100644 --- a/src/api/ftl.h +++ b/src/api/ftl.h @@ -15,8 +15,8 @@ // How many messages do we keep in memory (FIFO message buffer)? // The memory required is the set number in kilobytes -// Defaults to 32 [uses 32 KB of memory] -#define LOG_SIZE 32 +// Defaults to 64 [uses 64 KB of memory] +#define LOG_SIZE 64 void init_dnsmasq_fifo_log(void); void free_dnsmasq_fifo_log(void);