diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-07-16 05:59:39 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-07-16 05:59:39 +0000 |
commit | bc22a1ce13808c5a864d781b662880fd0e27b81c (patch) | |
tree | 091a124a436e3c244dc0b5b73ac794fd8fa39f3b /pkg/sentry/socket/hostinet | |
parent | 01f47edbbfc74a6d0adeb50f76cd6a55bc330c48 (diff) | |
parent | cf4fc510fd80c5a23e271db677a8721385c45a4d (diff) |
Merge cf4fc510 (automated)
Diffstat (limited to 'pkg/sentry/socket/hostinet')
-rw-r--r-- | pkg/sentry/socket/hostinet/stack.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/sentry/socket/hostinet/stack.go b/pkg/sentry/socket/hostinet/stack.go index 11f94281c..cc1f66fa1 100644 --- a/pkg/sentry/socket/hostinet/stack.go +++ b/pkg/sentry/socket/hostinet/stack.go @@ -244,3 +244,8 @@ func (s *Stack) TCPSACKEnabled() (bool, error) { func (s *Stack) SetTCPSACKEnabled(enabled bool) error { return syserror.EACCES } + +// Statistics implements inet.Stack.Statistics. +func (s *Stack) Statistics(stat interface{}, arg string) error { + return syserror.EOPNOTSUPP +} |