Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
iproute2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
iproute2
Commits
e460f82e
Commit
e460f82e
authored
Mar 10, 2006
by
shemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include file update
parent
27356a5e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
ChangeLog
ChangeLog
+5
-0
include/linux/socket.h
include/linux/socket.h
+1
-0
include/net/tcp_states.h
include/net/tcp_states.h
+16
-0
No files found.
ChangeLog
View file @
e460f82e
2006-03-10 shemminger <shemminger@osdl.org>
* Update to 2.6.16 headers
* Add fake version of include/linux/socket.h to fix warnings
2006-01-12 Patrick McHardy <kaber@trash.net>
* Handle DCCP in ipxfrm.c to allow using port numbers in the selector.
...
...
include/linux/socket.h
0 → 100644
View file @
e460f82e
#include <sys/socket.h>
include/net/tcp_states.h
View file @
e460f82e
...
...
@@ -31,4 +31,20 @@ enum {
#define TCP_STATE_MASK 0xF
#define TCP_ACTION_FIN (1 << 7)
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
)
};
#endif
/* _LINUX_TCP_STATES_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment