mirror of
https://github.com/mfontanini/libtins
synced 2026-01-27 20:24:26 +01:00
Removed the useless PDU::flag member. Added a PDU concatenation operator.
This commit is contained in:
@@ -42,8 +42,8 @@ TCPStream::StreamInfo::StreamInfo(IPv4Address client,
|
||||
|
||||
|
||||
TCPStream::TCPStream(IP *ip, TCP *tcp, uint64_t identifier)
|
||||
: client_seq(tcp->seq()), info(ip->src_addr(), ip->dst_addr(),
|
||||
tcp->sport(), tcp->dport()), identifier(identifier),
|
||||
: client_seq(tcp->seq()), server_seq(0), info(ip->src_addr(),
|
||||
ip->dst_addr(), tcp->sport(), tcp->dport()), identifier(identifier),
|
||||
syn_ack_sent(false), fin_sent(false)
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user