struct tarpc_get_accept_addr_in

Overview

struct tarpc_get_accept_addr_in {
    // fields

    struct tarpc_in_arg common;
    tarpc_int fd;
    tarpc_ptr buf;
    tarpc_size_t buflen;
    tarpc_size_t laddr_len;
    tarpc_size_t raddr_len;
    tarpc_bool l_sa_null;
    tarpc_bool r_sa_null;
    struct tarpc_sa laddr;
    struct tarpc_sa raddr;
    tarpc_size_t l_sa_len;
    tarpc_size_t r_sa_len;
};

Detailed Documentation

Fields

tarpc_int fd

TA-local socket

tarpc_ptr buf

Buffer with addresses

tarpc_size_t buflen

Length of the buffer passed to the AcceptEx()

tarpc_size_t laddr_len

Number of bytes reserved for the local address information

tarpc_size_t raddr_len

Number of bytes reserved for the remote address information

tarpc_bool l_sa_null

LocalSockaddr is NULL

tarpc_bool r_sa_null

RemoteSockaddr is NULL

struct tarpc_sa laddr

Local address

struct tarpc_sa raddr

Remote address

tarpc_size_t l_sa_len

LocalSockaddrLength (transparent)

tarpc_size_t r_sa_len

RemoteSockaddrLength (transparent)