Remove old ack_above_hole event from scripts.

Fixes BIT-1673
This commit is contained in:
Johanna Amann 2016-08-19 07:26:34 -07:00
parent 058e378ced
commit 077a5cbda8

View file

@ -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,