Implements list hosts according to retransmissions

Implements #4420
This commit is contained in:
Simone Mainardi 2020-10-08 17:54:04 +02:00
parent 4233365077
commit 3ce3b9dc46
5 changed files with 30 additions and 3 deletions

View file

@ -46,6 +46,8 @@ class TcpPacketStats {
s->pktRetr += pktRetr, s->pktOOO += pktOOO,
s->pktLost += pktLost, s->pktKeepAlive += pktKeepAlive;
}
inline u_int64_t get_retr() const { return pktRetr; };
};
#endif /* _TCP_PACKET_STATS_H_ */