Data Structures |
struct | tcp_operation |
| TCP operation data. More...
|
struct | tcp_socket_data |
| TCP socket specific data. More...
|
struct | tcp_globals |
| TCP global data. More...
|
Typedefs |
typedef struct tcp_globals | tcp_globals_t |
| Type definition of the TCP global data.
|
typedef struct tcp_socket_data | tcp_socket_data_t |
| Type definition of the TCP socket specific data.
|
typedef tcp_socket_data_t * | tcp_socket_data_ref |
| Type definition of the TCP socket specific data pointer.
|
typedef struct tcp_operation | tcp_operation_t |
| Type definition of the TCP operation data.
|
typedef tcp_operation_t * | tcp_operation_ref |
| Type definition of the TCP operation data pointer.
|
typedef enum tcp_socket_state | tcp_socket_state_t |
| TCP socket state type definition.
|
Enumerations |
enum | tcp_socket_state {
TCP_SOCKET_INITIAL,
TCP_SOCKET_LISTEN,
TCP_SOCKET_SYN_SENT,
TCP_SOCKET_SYN_RECEIVED,
TCP_SOCKET_ESTABLISHED,
TCP_SOCKET_FIN_WAIT_1,
TCP_SOCKET_FIN_WAIT_2,
TCP_SOCKET_CLOSING,
TCP_SOCKET_CLOSE_WAIT,
TCP_SOCKET_LAST_ACK,
TCP_SOCKET_TIME_WAIT,
TCP_SOCKET_CLOSED
} |
| TCP socket state.
More...
|
TCP module.