mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

And remove unnecessary check for mime_all_headers in HTTP entities (they ony raise the http_all_headers event, never mime_all_headers).
16 lines
353 B
Text
16 lines
353 B
Text
# @TEST-EXEC: zeek -b -r $TRACES/http/get.trace %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
@load base/protocols/http
|
|
|
|
event http_all_headers(c: connection, is_orig: bool, hlist: mime_header_list)
|
|
{
|
|
print "http_all_headers";
|
|
print hlist;
|
|
}
|
|
|
|
event mime_all_headers(c: connection, hlist: mime_header_list)
|
|
{
|
|
print "mime_all_headers";
|
|
print hlist;
|
|
}
|