mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
11 lines
349 B
Text
11 lines
349 B
Text
# @TEST-DOC: Implement Files::log_files and verify it is seeing unique File::Info records.
|
|
# @TEST-EXEC: zeek -b -r $TRACES/http/concurrent-range-requests.pcap %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
@load base/frameworks/files
|
|
@load base/protocols/http
|
|
|
|
event Files::log_files(rec: Files::Info)
|
|
{
|
|
print rec$uid, rec$id;
|
|
}
|