mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
27 lines
1,005 B
Text
27 lines
1,005 B
Text
# Don't run for C++ scripts because the multiple invocations lead to
|
|
# some runs having complaints that there are no scripts.
|
|
# @TEST-REQUIRES: test "${ZEEK_USE_CPP}" != "1"
|
|
|
|
# @TEST-EXEC: zeek -b -C -r $TRACES/http/multipart.trace base/protocols/http
|
|
# @TEST-EXEC: btest-diff http.log
|
|
# @TEST-EXEC: zeek -b -C -r $TRACES/http/multipart.trace base/protocols/http %INPUT >out-limited
|
|
# @TEST-EXEC: mv http.log http-limited.log
|
|
# @TEST-EXEC: btest-diff http-limited.log
|
|
# @TEST-EXEC: btest-diff out-limited
|
|
# @TEST-EXEC: zeek -b -C -r $TRACES/http/multipart.trace base/protocols/http %INPUT ignore_http_file_limit=T >out-limit-ignored
|
|
# @TEST-EXEC: mv http.log http-limit-ignored.log
|
|
# @TEST-EXEC: btest-diff http-limit-ignored.log
|
|
# @TEST-EXEC: btest-diff out-limit-ignored
|
|
|
|
option ignore_http_file_limit = F;
|
|
|
|
redef HTTP::max_files_orig = 1;
|
|
redef HTTP::max_files_resp = 1;
|
|
|
|
hook HTTP::max_files_policy(f: fa_file, is_orig: bool)
|
|
{
|
|
print "max_files reached";
|
|
|
|
if ( ignore_http_file_limit )
|
|
break;
|
|
}
|