zeek/testing/btest/scripts/base/protocols/http/all-headers-event.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

17 lines
353 B
Plaintext

# @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;
}