mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Raise http_entity_data in line with data arrival.
As opposed to delaying until a certain-sized-buffer fills, which is problematic because then the event becomes out of sync with the "rest of the world". E.g. content_gap handlers being called sooner than expected. Addresses BIT-1240.
This commit is contained in:
parent
9563726612
commit
f97f58e9db
8 changed files with 46 additions and 151 deletions
|
@ -2485,8 +2485,7 @@ type http_message_stat: record {
|
|||
header_length: count;
|
||||
};
|
||||
|
||||
## Maximum number of HTTP entity data delivered to events. The amount of data
|
||||
## can be limited for better performance, zero disables truncation.
|
||||
## Maximum number of HTTP entity data delivered to events.
|
||||
##
|
||||
## .. bro:see:: http_entity_data skip_http_entity_data skip_http_data
|
||||
global http_entity_data_delivery_size = 1500 &redef;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue