Function bind [src]

addr is *const T where T is one of the sockaddr

Prototype

pub fn bind(sock: socket_t, addr: *const sockaddr, len: socklen_t) BindError!void

Parameters

sock: socket_taddr: *const sockaddrlen: socklen_t

Possible Errors

AccessDenied

The address is protected, and the user is not the superuser. For UNIX domain sockets: Search permission is denied on a component of the path prefix.

AddressFamilyNotSupported

The address is not valid for the address family of socket.

AddressInUse

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

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

AlreadyBound
FileDescriptorNotASocket
FileNotFound

A component in the directory prefix of the socket pathname does not exist.

NameTooLong

addr is too long.

NetworkSubsystemFailed

The network subsystem has failed.

NotDir

A component of the path prefix is not a directory.

ReadOnlyFileSystem

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

SymLinkLoop

Too many symbolic links were encountered in resolving addr.

SystemResources

Insufficient kernel memory was available.

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 fn bind(sock: socket_t, addr: *const sockaddr, len: socklen_t) BindError!void { if (native_os == .windows) { const rc = windows.bind(sock, addr, len); if (rc == windows.ws2_32.SOCKET_ERROR) { switch (windows.ws2_32.WSAGetLastError()) { .WSANOTINITIALISED => unreachable, // not initialized WSA .WSAEACCES => return error.AccessDenied, .WSAEADDRINUSE => return error.AddressInUse, .WSAEADDRNOTAVAIL => return error.AddressNotAvailable, .WSAENOTSOCK => return error.FileDescriptorNotASocket, .WSAEFAULT => unreachable, // invalid pointers .WSAEINVAL => return error.AlreadyBound, .WSAENOBUFS => return error.SystemResources, .WSAENETDOWN => return error.NetworkSubsystemFailed, else => |err| return windows.unexpectedWSAError(err), } unreachable; } return; } else { const rc = system.bind(sock, addr, len); switch (errno(rc)) { .SUCCESS => return, .ACCES, .PERM => return error.AccessDenied, .ADDRINUSE => return error.AddressInUse, .BADF => unreachable, // always a race condition if this error is returned .INVAL => unreachable, // invalid parameters .NOTSOCK => unreachable, // invalid `sockfd` .AFNOSUPPORT => return error.AddressFamilyNotSupported, .ADDRNOTAVAIL => return error.AddressNotAvailable, .FAULT => unreachable, // invalid `addr` pointer .LOOP => return error.SymLinkLoop, .NAMETOOLONG => return error.NameTooLong, .NOENT => return error.FileNotFound, .NOMEM => return error.SystemResources, .NOTDIR => return error.NotDir, .ROFS => return error.ReadOnlyFileSystem, else => |err| return unexpectedErrno(err), } } unreachable; }