/* * Copyright 2007, Broadcom Corporation * All Rights Reserved. * * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE. * * Fundamental constants relating to TCP Protocol * * $Id$ */ #ifndef _bcmtcp_h_ #define _bcmtcp_h_ /* enable structure packing */ #if defined(__GNUC__) #define PACKED __attribute__((packed)) #else #pragma pack(1) #define PACKED #endif #define TCP_SRC_PORT_OFFSET 0 /* TCP source port offset */ #define TCP_DEST_PORT_OFFSET 2 /* TCP dest port offset */ #define TCP_CHKSUM_OFFSET 16 /* TCP body checksum offset */ /* These fields are stored in network order */ struct bcmtcp_hdr { uint16 src_port; /* Source Port Address */ uint16 dst_port; /* Destination Port Address */ uint32 seq_num; /* TCP Sequence Number */ uint32 ack_num; /* TCP Sequence Number */ uint16 hdrlen_rsvd_flags; /* Header length, reserved bits and flags */ uint16 tcpwin; /* TCP window */ uint16 chksum; /* Segment checksum with pseudoheader */ uint16 urg_ptr; /* Points to seq-num of byte following urg data */ } PACKED; #undef PACKED #if !defined(__GNUC__) #pragma pack() #endif /* Byte offset of flags in TCP header */ #define TCP_FLAGS_OFFSET 13 #define TCP_FLAGS_FIN 0x01 #define TCP_FLAGS_SYN 0x02 #define TCP_FLAGS_RST 0x03 #define TCP_FLAGS_PSH 0x04 #define TCP_FLAGS_ACK 0x10 #define TCP_FLAGS_URG 0x20 #define TCP_FLAGS_ECN 0x40 #define TCP_FLAGS_CWR 0x80 #define TCP_FLAGS(tcp_hdr) (((uint8 *)(tcp_hdr))[TCP_FLAGS_OFFSET]) #define TCP_IS_ACK(tcp_hdr) (TCP_FLAGS(tcp_hdr) & TCP_FLAGS_ACK) #define TCP_SRC_PORT(tcp_hdr) (ntoh16(((struct bcmtcp_hdr*)(tcp_hdr))->src_port)) #define TCP_DST_PORT(tcp_hdr) (ntoh16(((struct bcmtcp_hdr*)(tcp_hdr))->dst_port)) #define TCP_SEQ_NUM(tcp_hdr) (ntoh32(((struct bcmtcp_hdr*)(tcp_hdr))->seq_num)) #define TCP_ACK_NUM(tcp_hdr) (ntoh32(((struct bcmtcp_hdr*)(tcp_hdr))->ack_num)) #endif /* #ifndef _bcmtcp_h_ */ nk/socket.h?id=66eee3b1a21ecef79db9506d71c786c1990a2f7d'>treecommitdiffstats
path: root/package/libnl-tiny/src/include/netlink/socket.h
blob: 9f7f4220aa5cd5f222fb52f3af449306e67988ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221