Error Set TcpConnectToHostError [src]

Errors

AccessDenied OpenError

In WASI, this error may occur when the file descriptor does not hold the required rights to open a new resource relative to it.

AddressFamilyNotSupported SocketError

The implementation does not support the specified address family.

AddressInUse BindError

The given address is already in use, or in the case of Internet domain sockets, The port number was specified as zero in the socket address structure, but, upon attempting to bind to an ephemeral port, it was determined that all port numbers in the ephemeral port range are currently in use. See the discussion of /proc/sys/net/ipv4/ip_local_port_range ip(7).

AddressNotAvailable BindError

A nonexistent interface was requested or the requested address was not local.

AlreadyBound BindError
AlreadyConnected SetSockOptError

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

AntivirusInterference OpenError

On Windows, antivirus software is enabled by default. It can be disabled, but Windows Update sometimes ignores the user's preference and re-enables it. When enabled, antivirus software on Windows intercepts file system operations and makes them significantly slower in addition to possibly failing with this error code.

BadPathName OpenError

On Windows, file paths cannot contain these characters: '/', '*', '?', '"', '<', '>', '|'

BrokenPipe ReadError
Canceled ReadError

reading a timerfd with CANCEL_ON_SET will lead to this error when the clock goes through a discontinuous change

ConnectionPending ConnectError

Socket is non-blocking and already has a pending connection in progress.

ConnectionRefused ConnectError

A connect() on a stream socket found no one listening on the remote address.

ConnectionResetByPeer ConnectError

Connection was reset by peer before connect could complete.

ConnectionTimedOut ConnectError

Timeout while attempting connection. The server may be too busy to accept new connections. Note that for IP sockets the timeout may be very long when syncookies are enabled on the server.

DeviceBusy OpenError
FileBusy OpenError

One of these three things:

  • pathname refers to an executable image which is currently being executed and write access was requested.
  • pathname refers to a file that is currently in use as a swap file, and the O_TRUNC flag was specified.
  • pathname refers to a file that is currently being read by the kernel (e.g., for module/firmware loading), and write access was requested.
FileDescriptorNotASocket BindError
FileLocksNotSupported OpenError

The underlying filesystem does not support file locks

FileNotFound OpenError

Either:

  • One of the path components does not exist.
  • Cwd was used, but cwd has been deleted.
  • The path associated with the open directory handle has been deleted.
  • On macOS, multiple processes or threads raced to create the same file with O.EXCL set to false.
FileSystem GetAddressListError
FileTooBig OpenError

The file is too large to be opened. This error is unreachable for 64-bit targets, as well as when opening directories.

HostLacksNetworkAddresses GetAddressListError
Incomplete GetAddressListError
InputOutput ReadError
InterfaceNotFound GetAddressListError
InvalidCharacter GetAddressListError
InvalidEnd GetAddressListError
InvalidIPAddressFormat GetAddressListError
InvalidIpv4Mapping GetAddressListError
InvalidProtocolOption SetSockOptError

The option is not supported by the protocol.

InvalidUtf8 OpenError

WASI-only; file paths must be valid UTF-8.

InvalidWtf8 OpenError

Windows-only; file paths provided by the user must be valid WTF-8. https://simonsapin.github.io/wtf-8/

IsDir OpenError

The path refers to directory but the DIRECTORY flag was not provided.

LockViolation ReadError

Unable to read file due to lock.

NameServerFailure GetAddressListError
NameTooLong OpenError

The path exceeded max_path_bytes bytes.

NetworkNotFound OpenError

On Windows, \\server or \\server\share was not found.

NetworkSubsystemFailed BindError

The network subsystem has failed.

NetworkUnreachable ConnectError

Network is unreachable.

NoDevice OpenError
NoSpaceLeft OpenError

A new path cannot be created because the device has no room for the new file. This error is only reachable when the CREAT flag is provided.

NonCanonical GetAddressListError
NotDir OpenError

A component used as a directory in the path was not, in fact, a directory, or DIRECTORY was specified and the path was not a directory.

NotOpenForReading ReadError
OperationAborted ReadError
OperationNotSupported SetSockOptError
OutOfMemory Error
Overflow GetAddressListError
PathAlreadyExists OpenError

The path already exists and the CREAT and EXCL flags were provided.

PermissionDenied SetSockOptError

Setting the socket option requires more elevated permissions.

PipeBusy OpenError
ProcessFdQuotaExceeded SocketError

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

ProcessNotFound ReadError

This error occurs in Linux if the process to be read from no longer exists.

ProtocolFamilyNotAvailable SocketError

Unknown protocol, or protocol family not available.

ProtocolNotSupported SocketError

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

ReadOnlyFileSystem BindError

The socket inode would reside on a read-only filesystem.

ServiceUnavailable GetAddressListError
SharingViolation OpenError
SocketNotBound SetSockOptError
SocketNotConnected ReadError
SocketTypeNotSupported SocketError

The socket type is not supported by the protocol.

SymLinkLoop BindError

Too many symbolic links were encountered in resolving addr.

SystemFdQuotaExceeded SocketError

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

SystemResources OpenError

Insufficient kernel memory was available, or the named file is a FIFO and per-user hard limit on memory allocation for pipes has been reached.

TemporaryNameServerFailure GetAddressListError
TimeoutTooBig SetSockOptError

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.

UnknownHostName GetAddressListError
WouldBlock ReadError

This error occurs when no global event loop is configured, and reading from the file descriptor would block.

Source

pub const TcpConnectToHostError = GetAddressListError || TcpConnectToAddressError