mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Revert "FileAnalysis: optimize get_file_handle event queueing."
This reverts commit fc267d010d
.
There were some diffs caused by this in external test suites I'm
unsure about, I'm going to go over optimizations more closely in
a different branch.
This commit is contained in:
parent
fc267d010d
commit
393d35dc60
10 changed files with 37 additions and 88 deletions
|
@ -18,11 +18,11 @@ export {
|
|||
if ( ! c?$http ) return "";
|
||||
|
||||
if ( c$http$range_request )
|
||||
return cat(ANALYZER_HTTP, " ", is_orig, " ", c$id$orig_h,
|
||||
" ", build_url(c$http));
|
||||
return fmt("%s %s %s %s", ANALYZER_HTTP, is_orig, c$id$orig_h,
|
||||
build_url(c$http));
|
||||
|
||||
return cat(ANALYZER_HTTP, " ", c$start_time, " ", is_orig,
|
||||
" ", c$http$trans_depth, " ", id_string(c$id));
|
||||
return fmt("%s %s %s %s %s", ANALYZER_HTTP, c$start_time, is_orig,
|
||||
c$http$trans_depth, id_string(c$id));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue