summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/socket/hostinet
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2019-07-16 05:59:39 +0000
committergVisor bot <gvisor-bot@google.com>2019-07-16 05:59:39 +0000
commitbc22a1ce13808c5a864d781b662880fd0e27b81c (patch)
tree091a124a436e3c244dc0b5b73ac794fd8fa39f3b /pkg/sentry/socket/hostinet
parent01f47edbbfc74a6d0adeb50f76cd6a55bc330c48 (diff)
parentcf4fc510fd80c5a23e271db677a8721385c45a4d (diff)
Merge cf4fc510 (automated)
Diffstat (limited to 'pkg/sentry/socket/hostinet')
-rw-r--r--pkg/sentry/socket/hostinet/stack.go5
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
+}