#[no_mangle]
pub unsafe extern "C" fn nstd_net_udp_socket_connect(
    socket: NSTDUDPSocket,
    addr: *const c_char
) -> c_int
Expand description

Connects a UDP socket to a remote address. Parameters: NSTDUDPSocket socket - The socket to connect. const char *const addr - The remote address to connect to. Returns: int errc - Nonzero on error.