From 31efa3d82822fd27ed798de9cb7e0abc242b2c3d Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Wed, 31 Aug 2011 01:16:43 -0400 Subject: [PATCH] HTTP analyzer is now enabled with any of the HTTP events. --- src/HTTP.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/HTTP.h b/src/HTTP.h index 4d621fa526..7512f368a9 100644 --- a/src/HTTP.h +++ b/src/HTTP.h @@ -180,7 +180,10 @@ public: { return new HTTP_Analyzer(conn); } static bool Available() - { return (http_request || http_reply) && !FLAGS_use_binpac; } + { return (http_request || http_reply || http_header || + http_all_headers || http_begin_entity || http_end_entity || + http_content_type || http_entity_data || http_message_done || + http_event || http_stats) && !FLAGS_use_binpac; } int IsConnectionClose() { return connection_close; }