mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Extending rexmit_inconsistency() event to receive an additional
parameter with the packet's TCP flags, if available.
This commit is contained in:
parent
88a4683d22
commit
a83d97937e
14 changed files with 53 additions and 51 deletions
|
@ -19,12 +19,12 @@ export {
|
|||
};
|
||||
}
|
||||
|
||||
event rexmit_inconsistency(c: connection, t1: string, t2: string)
|
||||
event rexmit_inconsistency(c: connection, t1: string, t2: string, tcp_flags: string)
|
||||
{
|
||||
NOTICE([$note=Retransmission_Inconsistency,
|
||||
$conn=c,
|
||||
$msg=fmt("%s rexmit inconsistency (%s) (%s)",
|
||||
id_string(c$id), t1, t2),
|
||||
$msg=fmt("%s rexmit inconsistency (%s) (%s) [%s]",
|
||||
id_string(c$id), t1, t2, tcp_flags),
|
||||
$identifier=fmt("%s", c$id)]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue