mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
8 lines
191 B
Text
8 lines
191 B
Text
# @TEST-EXEC: bro -r $TRACES/ipv6-http-atomic-frag.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
event new_connection(c: connection)
|
|
{
|
|
if ( c$id$resp_p == 80/tcp )
|
|
print c$id;
|
|
}
|