mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
Added missing initialization in
- pqissl - pqissludp - PeerConnectStateBox - RsTlvBanListEntry - RsServer - TcpStream - PGPCertificateInfo - peerConnectAddress - AudioInputConfig - SpeexInputProcessor - xProgressBar - TBoard Removed unused member: - xProgressBar git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8611 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
502d2353cb
commit
c76141ed65
13 changed files with 31 additions and 6 deletions
|
@ -93,6 +93,12 @@ TcpStream::TcpStream(UdpSubReceiver *lyr)
|
|||
retransTimerOn(false),
|
||||
retransTimeout(TCP_RETRANS_TIMEOUT),
|
||||
retransTimerTs(0),
|
||||
keepAliveTimer(0),
|
||||
lastIncomingPkt(0),
|
||||
lastSentAck(0),
|
||||
lastSentWinSize(0),
|
||||
initOurSeqno(0),
|
||||
initPeerSeqno(0),
|
||||
lastWriteTF(0),lastReadTF(0),
|
||||
wcount(0), rcount(0),
|
||||
errorState(0),
|
||||
|
@ -102,12 +108,15 @@ TcpStream::TcpStream(UdpSubReceiver *lyr)
|
|||
congestThreshold(TCP_MAX_WIN),
|
||||
congestWinSize(MAX_SEG),
|
||||
congestUpdate(0),
|
||||
ttl(0),
|
||||
mTTL_period(0),
|
||||
mTTL_start(0),
|
||||
mTTL_end(0),
|
||||
peerKnown(false),
|
||||
udp(lyr)
|
||||
{
|
||||
sockaddr_clear(&peeraddr);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue