mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
HTTP analyzer is now enabled with any of the HTTP events.
This commit is contained in:
parent
a9155aceb2
commit
31efa3d828
1 changed files with 4 additions and 1 deletions
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue