File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class TcpSocketAdvertisedWindowProxy : public TcpSocketMsgBase
52
52
: TcpSocketMsgBase(other)
53
53
{
54
54
m_segmentSize = other.m_segmentSize ;
55
- m_inwalidAwndCb = other.m_inwalidAwndCb ;
55
+ m_invalidAwndCb = other.m_invalidAwndCb ;
56
56
}
57
57
58
58
/* *
@@ -78,7 +78,7 @@ class TcpSocketAdvertisedWindowProxy : public TcpSocketMsgBase
78
78
79
79
private:
80
80
uint16_t OldAdvertisedWindowSize (bool scale = true ) const ;
81
- InvalidAwndCallback m_inwalidAwndCb ; // !< Callback
81
+ InvalidAwndCallback m_invalidAwndCb ; // !< Callback
82
82
83
83
/* *
84
84
* @brief Test meta-information: size of the segments that are received.
93
93
TcpSocketAdvertisedWindowProxy::SetInvalidAwndCb (InvalidAwndCallback cb)
94
94
{
95
95
NS_ASSERT (!cb.IsNull());
96
- m_inwalidAwndCb = cb;
96
+ m_invalidAwndCb = cb;
97
97
}
98
98
99
99
TypeId
@@ -148,9 +148,9 @@ TcpSocketAdvertisedWindowProxy::AdvertisedWindowSize(bool scale) const
148
148
149
149
if (static_cast <uint16_t >(newAwndKnownDifference) != oldAwnd)
150
150
{
151
- if (!m_inwalidAwndCb .IsNull ())
151
+ if (!m_invalidAwndCb .IsNull ())
152
152
{
153
- m_inwalidAwndCb (oldAwnd, newAwnd);
153
+ m_invalidAwndCb (oldAwnd, newAwnd);
154
154
}
155
155
}
156
156
}
You can’t perform that action at this time.
0 commit comments