mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Fix set/getsockopt in vfs2 override.
Updates #1476. PiperOrigin-RevId: 307726055
This commit is contained in:
@@ -58,8 +58,8 @@ func Override(table map[uintptr]kernel.Syscall) {
|
||||
table[51] = syscalls.PartiallySupported("getsockname", GetSockName, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[52] = syscalls.PartiallySupported("getpeername", GetPeerName, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[53] = syscalls.PartiallySupported("socketpair", SocketPair, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[54] = syscalls.PartiallySupported("getsockopt", GetSockOpt, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[55] = syscalls.PartiallySupported("setsockopt", SetSockOpt, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[54] = syscalls.PartiallySupported("setsockopt", SetSockOpt, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[55] = syscalls.PartiallySupported("getsockopt", GetSockOpt, "In process of porting socket syscalls to VFS2.", nil)
|
||||
table[59] = syscalls.Supported("execve", Execve)
|
||||
table[72] = syscalls.Supported("fcntl", Fcntl)
|
||||
delete(table, 73) // flock
|
||||
|
||||
Reference in New Issue
Block a user