From e22f7b5958d1df8366cc333d20317405962df0ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vedran=20Mileti=C4=87?= Date: Mon, 18 Aug 2014 11:56:15 +0200 Subject: [PATCH] Make ordering of member variables in NSC TCP socket implementation header/source consistent --- src/internet/model/nsc-tcp-socket-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internet/model/nsc-tcp-socket-impl.h b/src/internet/model/nsc-tcp-socket-impl.h index 8ed28d695..e18578a31 100644 --- a/src/internet/model/nsc-tcp-socket-impl.h +++ b/src/internet/model/nsc-tcp-socket-impl.h @@ -240,8 +240,8 @@ private: uint32_t m_segmentSize; //!< SegmentSize uint32_t m_rxWindowSize; //!< Receive window size uint32_t m_advertisedWindowSize; //!< Window to advertise - TracedValue m_ssThresh; //!< Slow Start Threshold TracedValue m_cWnd; //!< Congestion window + TracedValue m_ssThresh; //!< Slow Start Threshold uint32_t m_initialCWnd; //!< Initial cWnd value uint32_t m_initialSsThresh; //!< Initial Slow Start Threshold