revert to previous behavior: windowSize is initialized by default to 0xffff

This commit is contained in:
Mathieu Lacage
2008-03-03 19:57:56 +01:00
parent 773b4d80a5
commit e4a7b6e868

View File

@@ -44,7 +44,7 @@ TcpHeader::TcpHeader ()
m_ackNumber (0),
m_length (5),
m_flags (0),
m_windowSize (0),
m_windowSize (0xffff),
m_checksum (0),
m_urgentPointer (0)
{}