diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-01-29 04:25:45 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-29 04:25:45 +0000 |
commit | 95a799b374287ea444e1827a89e228f5236a56e5 (patch) | |
tree | 8437949b78ca59296765bca124ca3a3adf166d6a /pkg/tcpip/stack/stack.go | |
parent | a051e260a93adbfbd35451d1d9a3482c2765fa3d (diff) | |
parent | ff4fc42784cfbc271f55da36da84d39cf9d7bb7d (diff) |
Merge release-20210125.0-24-gff4fc4278 (automated)
Diffstat (limited to 'pkg/tcpip/stack/stack.go')
-rw-r--r-- | pkg/tcpip/stack/stack.go | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/pkg/tcpip/stack/stack.go b/pkg/tcpip/stack/stack.go index e56183e71..119c4c505 100644 --- a/pkg/tcpip/stack/stack.go +++ b/pkg/tcpip/stack/stack.go @@ -76,12 +76,16 @@ type TCPCubicState struct { // TCPRACKState is used to hold a copy of the internal RACK state when the // TCPProbeFunc is invoked. type TCPRACKState struct { - XmitTime time.Time - EndSequence seqnum.Value - FACK seqnum.Value - RTT time.Duration - Reord bool - DSACKSeen bool + XmitTime time.Time + EndSequence seqnum.Value + FACK seqnum.Value + RTT time.Duration + Reord bool + DSACKSeen bool + ReoWnd time.Duration + ReoWndIncr uint8 + ReoWndPersist int8 + RTTSeq seqnum.Value } // TCPEndpointID is the unique 4 tuple that identifies a given endpoint. |