diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-10-28 02:35:11 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-10-28 02:35:11 +0000 |
commit | 6b463fe2b71a6201db0abd052d964c59317e6f6e (patch) | |
tree | c389a5ce4b1281f0c29830a45adf2692eb5b6ce1 /pkg/tcpip/tcpip.go | |
parent | 51a20bc178195f8b82d8edf7354ba1ce2a96fdf1 (diff) | |
parent | 035b1c8272b2a26f96bf4ad04330e04dba2f8ff6 (diff) |
Merge release-20201019.0-76-g035b1c827 (automated)
Diffstat (limited to 'pkg/tcpip/tcpip.go')
-rw-r--r-- | pkg/tcpip/tcpip.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go index ac4d39d3e..3ab2b7654 100644 --- a/pkg/tcpip/tcpip.go +++ b/pkg/tcpip/tcpip.go @@ -1505,6 +1505,15 @@ type IPStats struct { // IPTablesOutputDropped is the total number of IP packets dropped in // the Output chain. IPTablesOutputDropped *StatCounter + + // OptionTSReceived is the number of Timestamp options seen. + OptionTSReceived *StatCounter + + // OptionRRReceived is the number of Record Route options seen. + OptionRRReceived *StatCounter + + // OptionUnknownReceived is the number of unknown IP options seen. + OptionUnknownReceived *StatCounter } // TCPStats collects TCP-specific stats. |