diff options
Diffstat (limited to 'pkg/sentry/socket/hostinet/stack.go')
-rw-r--r-- | pkg/sentry/socket/hostinet/stack.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/sentry/socket/hostinet/stack.go b/pkg/sentry/socket/hostinet/stack.go index 61111ac6c..b80d64c9a 100644 --- a/pkg/sentry/socket/hostinet/stack.go +++ b/pkg/sentry/socket/hostinet/stack.go @@ -333,6 +333,21 @@ func (*Stack) RemoveInterfaceAddr(int32, inet.InterfaceAddr) error { return linuxerr.EACCES } +// Neighbors implements inet.Stack.Neighbors. +func (s *Stack) Neighbors() ([]inet.Neighbor, error) { + return nil, linuxerr.EACCES +} + +// AddNeighbor implements inet.Stack.AddNeighbor. +func (s *Stack) AddNeighbor(inet.Neighbor) error { + return linuxerr.EACCES +} + +// RemoveNeighbor implements inet.Stack.RemoveNeighbor. +func (s *Stack) RemoveNeighbor(inet.Neighbor) error { + return linuxerr.EACCES +} + // SupportsIPv6 implements inet.Stack.SupportsIPv6. func (s *Stack) SupportsIPv6() bool { return s.supportsIPv6 |