diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-06-18 08:49:51 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-06-18 08:49:51 +0000 |
commit | b7d87eb0fb93cac42b5c9034fb22351743823ed7 (patch) | |
tree | 3398182f3f61577a40926e2e04a78d03d2058bb6 /pkg/sentry/socket/hostinet | |
parent | e942d4c88fef76dffacb1de8e4d2fa2e0a282926 (diff) | |
parent | 8ab0848c70fcebe377a0e7abdebf371022c96830 (diff) |
Merge 8ab0848c (automated)
Diffstat (limited to 'pkg/sentry/socket/hostinet')
-rw-r--r-- | pkg/sentry/socket/hostinet/socket.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/socket/hostinet/socket.go b/pkg/sentry/socket/hostinet/socket.go index cef007aca..c63f3aacf 100644 --- a/pkg/sentry/socket/hostinet/socket.go +++ b/pkg/sentry/socket/hostinet/socket.go @@ -77,7 +77,7 @@ func newSocketFile(ctx context.Context, family int, stype linux.SockType, protoc } dirent := socket.NewDirent(ctx, socketDevice) defer dirent.DecRef() - return fs.NewFile(ctx, dirent, fs.FileFlags{NonBlocking: nonblock, Read: true, Write: true}, s), nil + return fs.NewFile(ctx, dirent, fs.FileFlags{NonBlocking: nonblock, Read: true, Write: true, NonSeekable: true}, s), nil } // Release implements fs.FileOperations.Release. |