From: Eric Leblond Date: Mon, 3 Mar 2014 16:57:10 +0000 (+0100) Subject: http: add info message about memcap X-Git-Tag: suricata-2.0rc2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=606e19124b3417d3bf1faa3a72eeef844eda658e;p=thirdparty%2Fsuricata.git http: add info message about memcap Display a message about http memcap when it is set in config file. --- 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;