Error Set IPv6InterfaceError [src]

Errors

AccessDenied SocketError

Permission to create a socket of the specified type and/or pro‐tocol is denied.

AddressFamilyNotSupported SocketError

The implementation does not support the specified address family.

FileSystem IoCtl_SIOCGIFINDEX_Error
InterfaceNotFound IoCtl_SIOCGIFINDEX_Error
NameTooLong
ProcessFdQuotaExceeded SocketError

The per-process limit on the number of open file descriptors has been reached.

ProtocolFamilyNotAvailable SocketError

Unknown protocol, or protocol family not available.

ProtocolNotSupported SocketError

The protocol type or the specified protocol is not supported within this domain.

SocketTypeNotSupported SocketError

The socket type is not supported by the protocol.

SystemFdQuotaExceeded SocketError

The system-wide limit on the total number of open files has been reached.

SystemResources SocketError

Insufficient memory is available. The socket cannot be created until sufficient resources are freed.

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 IPv6InterfaceError = posix.SocketError || posix.IoCtl_SIOCGIFINDEX_Error || error{NameTooLong}