Function tcpConnectToAddress [src]

Prototype

pub fn tcpConnectToAddress(address: Address) TcpConnectToAddressError!Stream

Parameters

address: Address

Possible 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.

AddressInUse ConnectError

Local address is already in use.

AddressNotAvailable ConnectError

(Internet domain sockets) The socket referred to by sockfd had not previously been bound to an address and, upon attempting to bind it 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 in ip(7).

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.

FileNotFound ConnectError

The given path for the unix socket does not exist.

NetworkUnreachable ConnectError

Network is unreachable.

PermissionDenied ConnectError

See AccessDenied

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.

WouldBlock ConnectError

This error occurs when no global event loop is configured, and connecting to the socket would block.

Source

pub fn tcpConnectToAddress(address: Address) TcpConnectToAddressError!Stream { const nonblock = 0; const sock_flags = posix.SOCK.STREAM | nonblock | (if (native_os == .windows) 0 else posix.SOCK.CLOEXEC); const sockfd = try posix.socket(address.any.family, sock_flags, posix.IPPROTO.TCP); errdefer Stream.close(.{ .handle = sockfd }); try posix.connect(sockfd, &address.any, address.getOsSockLen()); return Stream{ .handle = sockfd }; }