32c3ec907e71bfefebbdec26788f333ece1348b0
[reactos.git] / reactos / drivers / network / tcpip / include / tcp.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS TCP/IP protocol driver
4 * FILE: include/tcp.h
5 * PURPOSE: Transmission Control Protocol definitions
6 */
7 #ifndef __TCP_H
8 #define __TCP_H
9
10 typedef VOID
11 (*PTCP_COMPLETION_ROUTINE)( PVOID Context, NTSTATUS Status, ULONG Count );
12
13 /* TCPv4 header structure */
14 #include <pshpack1.h>
15 typedef struct TCPv4_HEADER {
16 USHORT SourcePort; /* Source port */
17 USHORT DestinationPort; /* Destination port */
18 ULONG SequenceNumber; /* Sequence number */
19 ULONG AckNumber; /* Acknowledgement number */
20 UCHAR DataOffset; /* Data offset; 32-bit words (leftmost 4 bits) */
21 UCHAR Flags; /* Control bits (rightmost 6 bits) */
22 USHORT Window; /* Maximum acceptable receive window */
23 USHORT Checksum; /* Checksum of segment */
24 USHORT Urgent; /* Pointer to urgent data */
25 } TCPv4_HEADER, *PTCPv4_HEADER;
26
27 /* TCPv4 header flags */
28 #define TCP_URG 0x20
29 #define TCP_ACK 0x10
30 #define TCP_PSH 0x08
31 #define TCP_RST 0x04
32 #define TCP_SYN 0x02
33 #define TCP_FIN 0x01
34
35
36 #define TCPOPT_END_OF_LIST 0x0
37 #define TCPOPT_NO_OPERATION 0x1
38 #define TCPOPT_MAX_SEG_SIZE 0x2
39
40 #define TCPOPTLEN_MAX_SEG_SIZE 0x4
41
42 /* Data offset; 32-bit words (leftmost 4 bits); convert to bytes */
43 #define TCP_DATA_OFFSET(DataOffset)(((DataOffset) & 0xF0) >> (4-2))
44
45
46 /* TCPv4 pseudo header */
47 typedef struct TCPv4_PSEUDO_HEADER {
48 ULONG SourceAddress; /* Source address */
49 ULONG DestinationAddress; /* Destination address */
50 UCHAR Zero; /* Reserved */
51 UCHAR Protocol; /* Protocol */
52 USHORT TCPLength; /* Size of TCP segment */
53 } TCPv4_PSEUDO_HEADER, *PTCPv4_PSEUDO_HEADER;
54 #include <poppack.h>
55
56 typedef struct _SLEEPING_THREAD {
57 LIST_ENTRY Entry;
58 PVOID SleepToken;
59 KEVENT Event;
60 } SLEEPING_THREAD, *PSLEEPING_THREAD;
61
62 /* Retransmission timeout constants */
63
64 /* Lower bound for retransmission timeout in TCP timer ticks */
65 #define TCP_MIN_RETRANSMISSION_TIMEOUT 1*1000 /* 1 tick */
66
67 /* Upper bound for retransmission timeout in TCP timer ticks */
68 #define TCP_MAX_RETRANSMISSION_TIMEOUT 1*60*1000 /* 1 tick */
69
70 /* Smoothing factor */
71 #define TCP_ALPHA_RETRANSMISSION_TIMEOUT(x)(((x)*8)/10) /* 0.8 */
72
73 /* Delay variance factor */
74 #define TCP_BETA_RETRANSMISSION_TIMEOUT(x)(((x)*16)/10) /* 1.6 */
75
76
77 /* Datagram/segment send request flags */
78
79 #define SRF_URG TCP_URG
80 #define SRF_ACK TCP_ACK
81 #define SRF_PSH TCP_PSH
82 #define SRF_RST TCP_RST
83 #define SRF_SYN TCP_SYN
84 #define SRF_FIN TCP_FIN
85
86 extern LONG TCP_IPIdentification;
87
88 /* accept.c */
89 NTSTATUS TCPServiceListeningSocket( PCONNECTION_ENDPOINT Listener,
90 PCONNECTION_ENDPOINT Connection,
91 PTDI_REQUEST_KERNEL Request );
92 NTSTATUS TCPListen( PCONNECTION_ENDPOINT Connection, UINT Backlog );
93 VOID TCPAbortListenForSocket( PCONNECTION_ENDPOINT Listener,
94 PCONNECTION_ENDPOINT Connection );
95 NTSTATUS TCPAccept
96 ( PTDI_REQUEST Request,
97 PCONNECTION_ENDPOINT Listener,
98 PCONNECTION_ENDPOINT Connection,
99 PTCP_COMPLETION_ROUTINE Complete,
100 PVOID Context );
101
102 /* tcp.c */
103 PCONNECTION_ENDPOINT TCPAllocateConnectionEndpoint( PVOID ClientContext );
104 VOID TCPFreeConnectionEndpoint( PCONNECTION_ENDPOINT Connection );
105
106 NTSTATUS TCPSocket( PCONNECTION_ENDPOINT Connection,
107 UINT Family, UINT Type, UINT Proto );
108
109 PTCP_SEGMENT TCPCreateSegment(
110 PIP_PACKET IPPacket,
111 PTCPv4_HEADER TCPHeader,
112 ULONG SegmentLength);
113
114 VOID TCPFreeSegment(
115 PTCP_SEGMENT Segment);
116
117 VOID TCPAddSegment(
118 PCONNECTION_ENDPOINT Connection,
119 PTCP_SEGMENT Segment,
120 PULONG Acknowledged);
121
122 NTSTATUS TCPConnect(
123 PCONNECTION_ENDPOINT Connection,
124 PTDI_CONNECTION_INFORMATION ConnInfo,
125 PTDI_CONNECTION_INFORMATION ReturnInfo,
126 PTCP_COMPLETION_ROUTINE Complete,
127 PVOID Context);
128
129 NTSTATUS TCPDisconnect(
130 PCONNECTION_ENDPOINT Connection,
131 UINT Flags,
132 PTDI_CONNECTION_INFORMATION ConnInfo,
133 PTDI_CONNECTION_INFORMATION ReturnInfo,
134 PTCP_COMPLETION_ROUTINE Complete,
135 PVOID Context);
136
137 NTSTATUS TCPReceiveData(
138 PCONNECTION_ENDPOINT Connection,
139 PNDIS_BUFFER Buffer,
140 ULONG ReceiveLength,
141 PULONG BytesReceived,
142 ULONG ReceiveFlags,
143 PTCP_COMPLETION_ROUTINE Complete,
144 PVOID Context);
145
146 NTSTATUS TCPSendData(
147 PCONNECTION_ENDPOINT Connection,
148 PCHAR Buffer,
149 ULONG DataSize,
150 PULONG DataUsed,
151 ULONG Flags,
152 PTCP_COMPLETION_ROUTINE Complete,
153 PVOID Context);
154
155 NTSTATUS TCPClose( PCONNECTION_ENDPOINT Connection );
156
157 NTSTATUS TCPTranslateError( int OskitError );
158
159 VOID TCPTimeout();
160
161 UINT TCPAllocatePort( UINT HintPort );
162
163 VOID TCPFreePort( UINT Port );
164
165 NTSTATUS TCPGetSockAddress
166 ( PCONNECTION_ENDPOINT Connection,
167 PTRANSPORT_ADDRESS TransportAddress,
168 BOOLEAN RemoteAddress );
169
170 NTSTATUS TCPStartup(
171 VOID);
172
173 NTSTATUS TCPShutdown(
174 VOID);
175
176 VOID TCPRemoveIRP( PCONNECTION_ENDPOINT Connection, PIRP Irp );
177
178 #endif /* __TCP_H */