mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Remove old ack_above_hole event from scripts.
Fixes BIT-1673
This commit is contained in:
parent
058e378ced
commit
077a5cbda8
1 changed files with 0 additions and 8 deletions
|
@ -12,8 +12,6 @@ export {
|
|||
redef enum Notice::Type += {
|
||||
## Possible evasion; usually just chud.
|
||||
Retransmission_Inconsistency,
|
||||
## Could mean packet drop; could also be chud.
|
||||
Ack_Above_Hole,
|
||||
## Data has sequence hole; perhaps due to filtering.
|
||||
Content_Gap,
|
||||
};
|
||||
|
@ -28,12 +26,6 @@ event rexmit_inconsistency(c: connection, t1: string, t2: string, tcp_flags: str
|
|||
$identifier=fmt("%s", c$id)]);
|
||||
}
|
||||
|
||||
event ack_above_hole(c: connection)
|
||||
{
|
||||
NOTICE([$note=Ack_Above_Hole, $conn=c,
|
||||
$msg=fmt("%s ack above a hole", id_string(c$id))]);
|
||||
}
|
||||
|
||||
event content_gap(c: connection, is_orig: bool, seq: count, length: count)
|
||||
{
|
||||
NOTICE([$note=Content_Gap, $conn=c,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue