HTTP analyzer is now enabled with any of the HTTP events.

This commit is contained in:
Seth Hall 2011-08-31 01:16:43 -04:00 committed by Robin Sommer
parent a9155aceb2
commit 31efa3d828

View file

@ -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; }