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

The FragReassembler expire_timer was left uninitialized until after the first fragment is added, but since the atomic fragment is also the last, the reassembler thought expire_timer needed to be deleted. This fix just initializes expire_timer before the first fragment is added.
7 lines
160 B
Text
7 lines
160 B
Text
# @TEST-EXEC: bro -r $TRACES/ipv6-http-atomic-frag.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
event new_connection(c: connection)
|
|
{
|
|
print c$id;
|
|
}
|