Error Set SetSockOptError [src]

Errors

AlreadyConnected

The socket is already connected, and a specified option cannot be set while the socket is connected.

FileDescriptorNotASocket
InvalidProtocolOption

The option is not supported by the protocol.

NetworkSubsystemFailed
NoDevice
OperationNotSupported
PermissionDenied

Setting the socket option requires more elevated permissions.

SocketNotBound
SystemResources

Insufficient resources are available in the system to complete the call.

TimeoutTooBig

The send and receive timeout values are too big to fit into the timeout fields in the socket structure.

Unexpected UnexpectedError

The Operating System returned an undocumented error code.

This error is in theory not possible, but it would be better to handle this error than to invoke undefined behavior.

When this error code is observed, it usually means the Zig Standard Library needs a small patch to add the error code to the error set for the respective function.

Source

pub const SetSockOptError = error{ /// The socket is already connected, and a specified option cannot be set while the socket is connected. AlreadyConnected, /// The option is not supported by the protocol. InvalidProtocolOption, /// The send and receive timeout values are too big to fit into the timeout fields in the socket structure. TimeoutTooBig, /// Insufficient resources are available in the system to complete the call. SystemResources, /// Setting the socket option requires more elevated permissions. PermissionDenied, OperationNotSupported, NetworkSubsystemFailed, FileDescriptorNotASocket, SocketNotBound, NoDevice, } || UnexpectedError