| ... | @@ -6752,6 +6752,7 @@ pub const SetSockOptError = error{ | ... | @@ -6752,6 +6752,7 @@ pub const SetSockOptError = error{ |
| 6752 | // Setting the socket option requires more elevated permissions. | 6752 | // Setting the socket option requires more elevated permissions. |
| 6753 | PermissionDenied, | 6753 | PermissionDenied, |
| 6754 | | 6754 | |
| | 6755 | OperationNotSupported, |
| 6755 | NetworkSubsystemFailed, | 6756 | NetworkSubsystemFailed, |
| 6756 | FileDescriptorNotASocket, | 6757 | FileDescriptorNotASocket, |
| 6757 | SocketNotBound, | 6758 | SocketNotBound, |
| ... | @@ -6787,6 +6788,7 @@ pub fn setsockopt(fd: socket_t, level: i32, optname: u32, opt: []const u8) SetSo | ... | @@ -6787,6 +6788,7 @@ pub fn setsockopt(fd: socket_t, level: i32, optname: u32, opt: []const u8) SetSo |
| 6787 | .NOBUFS => return error.SystemResources, | 6788 | .NOBUFS => return error.SystemResources, |
| 6788 | .PERM => return error.PermissionDenied, | 6789 | .PERM => return error.PermissionDenied, |
| 6789 | .NODEV => return error.NoDevice, | 6790 | .NODEV => return error.NoDevice, |
| | 6791 | .OPNOTSUPP => return error.OperationNotSupported, |
| 6790 | else => |err| return unexpectedErrno(err), | 6792 | else => |err| return unexpectedErrno(err), |
| 6791 | } | 6793 | } |
| 6792 | } | 6794 | } |