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

It was not being raised in all the cases it should have been due to an incorrect/unnecessary truncation check.
7 lines
208 B
Text
7 lines
208 B
Text
# @TEST-EXEC: zeek -b -r $TRACES/tcp/options.pcap %INPUT > out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event tcp_option(c: connection, is_orig: bool, opt: count, optlen: count)
|
|
{
|
|
print c$id, is_orig, opt, optlen;
|
|
}
|