diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-01-28 00:27:45 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-28 00:27:45 +0000 |
commit | b161e5d2a3a9a8518e8408116e6c5f0269557d12 (patch) | |
tree | 4a1b4538ffccbae2b7ad96ed75b9f3efc3420dd3 /pkg/abi/linux/socket.go | |
parent | 309913688384e2e1ba64927192fab22cc925eb5d (diff) | |
parent | 99988e45ed651f64e16e2f2663b06b4a1eee50d4 (diff) |
Merge release-20210112.0-104-g99988e45e (automated)
Diffstat (limited to 'pkg/abi/linux/socket.go')
-rw-r--r-- | pkg/abi/linux/socket.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/abi/linux/socket.go b/pkg/abi/linux/socket.go index 8591acbf2..cb33c37bd 100644 --- a/pkg/abi/linux/socket.go +++ b/pkg/abi/linux/socket.go @@ -416,6 +416,18 @@ type TCPInfo struct { RwndLimited uint64 // SndBufLimited is the time in microseconds limited by send buffer. SndBufLimited uint64 + + Delievered uint32 + DelieveredCe uint32 + + // BytesSent is RFC4898 tcpEStatsPerfHCDataOctetsOut. + BytesSent uint64 + // BytesRetrans is RFC4898 tcpEStatsPerfOctetsRetrans. + BytesRetrans uint64 + // DSACKDups is RFC4898 tcpEStatsStackDSACKDups. + DSACKDups uint32 + // ReordSeen is the number of reordering events seen. + ReordSeen uint32 } // SizeOfTCPInfo is the binary size of a TCPInfo struct. |