mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 20:48:21 +00:00

This is based on commit 99e6942efec5feff50523f6b2a1f5868f19ab638 from the zeek-docs repo.
4 lines
171 B
Text
4 lines
171 B
Text
event MyHTTP::request_line(c: connection, method: string, uri: string, version: string)
|
|
{
|
|
print fmt("Zeek saw from %s: %s %s %s", c$id$orig_h, method, uri, version);
|
|
}
|