enum rpc_socket_type

Overview

TA-independent types of sockets (the communication semantics). More…

#include <te_rpc_sys_socket.h>

enum rpc_socket_type {
    RPC_SOCK_UNSPEC,
    RPC_SOCK_UNKNOWN,
    RPC_SOCK_DGRAM,
    RPC_SOCK_STREAM,
    RPC_SOCK_RAW,
    RPC_SOCK_SEQPACKET,
    RPC_SOCK_RDM,
};

Detailed Documentation

TA-independent types of sockets (the communication semantics).

Enum Values

RPC_SOCK_UNSPEC

Unspecified

RPC_SOCK_UNKNOWN

Socket type unknown to RPC server sockets

RPC_SOCK_DGRAM

SOCK_DGRAM in BSD

RPC_SOCK_STREAM

SOCK_STREAM in BSD

RPC_SOCK_RAW

SOCK_RAW in BSD

RPC_SOCK_SEQPACKET

SOCK_SEQPACKET in BSD

RPC_SOCK_RDM

SOCK_RDM in BSD