mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/master' into topic/bernhard/input
This commit is contained in:
commit
b62e6899ad
12 changed files with 341 additions and 17 deletions
|
@ -174,7 +174,7 @@ export {
|
|||
["SYN_after_reset"] = ACTION_LOG,
|
||||
["SYN_inside_connection"] = ACTION_LOG,
|
||||
["SYN_seq_jump"] = ACTION_LOG,
|
||||
["SYN_with_data"] = ACTION_LOG,
|
||||
["SYN_with_data"] = ACTION_LOG_PER_ORIG,
|
||||
["TCP_christmas"] = ACTION_LOG,
|
||||
["truncated_ARP"] = ACTION_LOG,
|
||||
["truncated_NTP"] = ACTION_LOG,
|
||||
|
|
|
@ -33,7 +33,8 @@ export {
|
|||
event http_entity_data(c: connection, is_orig: bool, length: count, data: string) &priority=5
|
||||
{
|
||||
# Client body extraction is not currently supported in this script.
|
||||
if ( is_orig || ! c$http$first_chunk ) return;
|
||||
if ( is_orig )
|
||||
return;
|
||||
|
||||
if ( c$http$first_chunk )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue