zeek/doc/devel/spicy/examples/tftp-two-requests.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

10 lines
307 B
Plaintext

event tftp::read_request(c: connection, is_orig: bool, filename: string, mode: string)
{
print "TFTP read request", c$id, is_orig, filename, mode;
}
event tftp::write_request(c: connection, is_orig: bool, filename: string, mode: string)
{
print "TFTP write request", c$id, is_orig, filename, mode;
}