From 606e19124b3417d3bf1faa3a72eeef844eda658e Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Mon, 3 Mar 2014 17:57:10 +0100 Subject: [PATCH] http: add info message about memcap Display a message about http memcap when it is set in config file. --- src/app-layer-htp-mem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app-layer-htp-mem.c b/src/app-layer-htp-mem.c index f553f5ab23..39a4f4e19c 100644 --- a/src/app-layer-htp-mem.c +++ b/src/app-layer-htp-mem.c @@ -56,6 +56,7 @@ void HTPParseMemcap() conf_val); exit(EXIT_FAILURE); } + SCLogInfo("HTTP memcap: %"PRIu64, htp_config_memcap); } else { /* default to unlimited */ htp_config_memcap = 0;