ReactOS 0.4.16-dev-736-g28b802b
|
#include "linux.h"
Go to the source code of this file.
Classes | |
struct | tcphdr |
union | tcp_word_hdr |
struct | tcp_info |
Enumerations | |
enum | { TCP_ESTABLISHED = 1 , TCP_SYN_SENT , TCP_SYN_RECV , TCP_FIN_WAIT1 , TCP_FIN_WAIT2 , TCP_TIME_WAIT , TCP_CLOSE , TCP_CLOSE_WAIT , TCP_LAST_ACK , TCP_LISTEN , TCP_CLOSING , TCP_MAX_STATES } |
enum | { TCPF_ESTABLISHED = (1 << 1) , TCPF_SYN_SENT = (1 << 2) , TCPF_SYN_RECV = (1 << 3) , TCPF_FIN_WAIT1 = (1 << 4) , TCPF_FIN_WAIT2 = (1 << 5) , TCPF_TIME_WAIT = (1 << 6) , TCPF_CLOSE = (1 << 7) , TCPF_CLOSE_WAIT = (1 << 8) , TCPF_LAST_ACK = (1 << 9) , TCPF_LISTEN = (1 << 10) , TCPF_CLOSING = (1 << 11) } |
enum | { TCP_FLAG_CWR = 0x00800000 , TCP_FLAG_ECE = 0x00400000 , TCP_FLAG_URG = 0x00200000 , TCP_FLAG_ACK = 0x00100000 , TCP_FLAG_PSH = 0x00080000 , TCP_FLAG_RST = 0x00040000 , TCP_FLAG_SYN = 0x00020000 , TCP_FLAG_FIN = 0x00010000 , TCP_RESERVED_BITS = 0x0F000000 , TCP_DATA_OFFSET = 0xF0000000 } |
enum | tcp_ca_state { TCP_CA_Open = 0 , TCP_CA_Disorder = 1 , TCP_CA_CWR = 2 , TCP_CA_Recovery = 3 , TCP_CA_Loss } |
#define tcp_flag_word | ( | tp | ) | ( ((union tcp_word_hdr *)(tp))->words [3]) |
#define TCP_INFO 11 /* Information about this connection. */ |
#define TCPF_CA_CWR (1<<TCP_CA_CWR) |
#define TCPF_CA_Disorder (1<<TCP_CA_Disorder) |
#define TCPF_CA_Loss (1<<TCP_CA_Loss) |
#define TCPF_CA_Open (1<<TCP_CA_Open) |
#define TCPF_CA_Recovery (1<<TCP_CA_Recovery) |
anonymous enum |
Enumerator | |
---|---|
TCP_ESTABLISHED | |
TCP_SYN_SENT | |
TCP_SYN_RECV | |
TCP_FIN_WAIT1 | |
TCP_FIN_WAIT2 | |
TCP_TIME_WAIT | |
TCP_CLOSE | |
TCP_CLOSE_WAIT | |
TCP_LAST_ACK | |
TCP_LISTEN | |
TCP_CLOSING | |
TCP_MAX_STATES |
Definition at line 58 of file tcpdef.h.
anonymous enum |
Enumerator | |
---|---|
TCPF_ESTABLISHED | |
TCPF_SYN_SENT | |
TCPF_SYN_RECV | |
TCPF_FIN_WAIT1 | |
TCPF_FIN_WAIT2 | |
TCPF_TIME_WAIT | |
TCPF_CLOSE | |
TCPF_CLOSE_WAIT | |
TCPF_LAST_ACK | |
TCPF_LISTEN | |
TCPF_CLOSING |
Definition at line 77 of file tcpdef.h.
anonymous enum |
Enumerator | |
---|---|
TCP_CA_Open | |
TCP_CA_Disorder | |
TCP_CA_CWR | |
TCP_CA_Recovery | |
TCP_CA_Loss |
Definition at line 135 of file tcpdef.h.