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

This is based on commit 99e6942efec5feff50523f6b2a1f5868f19ab638 from the zeek-docs repo.
20 lines
385 B
Text
20 lines
385 B
Text
event connection_state_remove(c: connection)
|
|
{
|
|
print "connection_state_remove";
|
|
print c$uid;
|
|
print c$id;
|
|
for ( s in c$service )
|
|
print s;
|
|
}
|
|
|
|
event file_state_remove(f: fa_file)
|
|
{
|
|
print "file_state_remove";
|
|
print f$id;
|
|
for ( cid in f$conns )
|
|
{
|
|
print f$conns[cid]$uid;
|
|
print cid;
|
|
}
|
|
print f$source;
|
|
}
|