recv SYN after FIN or RST is considered to be TCP port reuse
This commit is contained in:
@@ -24,15 +24,16 @@ extern "C"
|
||||
struct tcp_half
|
||||
{
|
||||
struct tcp_reassembly *assembler;
|
||||
struct tcp_segment in_order;
|
||||
uint32_t in_order_ref;
|
||||
struct tcp_segment in_order; // current packet in order segment
|
||||
uint32_t in_order_ref; // reference count of current packet in order segment
|
||||
|
||||
uint32_t isn;
|
||||
uint32_t seq;
|
||||
uint32_t ack;
|
||||
uint16_t len;
|
||||
uint8_t flags;
|
||||
uint8_t history;
|
||||
uint32_t seq; // current packet sequence number
|
||||
uint32_t ack; // current packet ack number
|
||||
uint16_t len; // current packet payload length
|
||||
uint8_t flags; // current packet flags
|
||||
|
||||
uint32_t isn; // current direction initial sequence number
|
||||
uint8_t history; // current direction received flags
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user