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
ebfe4922
Commit
ebfe4922
authored
May 27, 2015
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update to 4.1-rc5 headers
Pull in some changes like RTN_F_EXTERNAL
parent
c079e121
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
include/linux/inet_diag.h
include/linux/inet_diag.h
+4
-0
include/linux/mpls.h
include/linux/mpls.h
+10
-0
include/linux/rtnetlink.h
include/linux/rtnetlink.h
+1
-1
include/linux/tcp.h
include/linux/tcp.h
+3
-0
No files found.
include/linux/inet_diag.h
View file @
ebfe4922
...
...
@@ -143,4 +143,8 @@ struct tcp_dctcp_info {
__u32
dctcp_ab_tot
;
};
union
tcp_cc_info
{
struct
tcpvegas_info
vegas
;
struct
tcp_dctcp_info
dctcp
;
};
#endif
/* _INET_DIAG_H_ */
include/linux/mpls.h
View file @
ebfe4922
...
...
@@ -31,4 +31,14 @@ struct mpls_label {
#define MPLS_LS_TTL_MASK 0x000000FF
#define MPLS_LS_TTL_SHIFT 0
/* Reserved labels */
#define MPLS_LABEL_IPV4NULL 0
/* RFC3032 */
#define MPLS_LABEL_RTALERT 1
/* RFC3032 */
#define MPLS_LABEL_IPV6NULL 2
/* RFC3032 */
#define MPLS_LABEL_IMPLNULL 3
/* RFC3032 */
#define MPLS_LABEL_ENTROPY 7
/* RFC6790 */
#define MPLS_LABEL_GAL 13
/* RFC5586 */
#define MPLS_LABEL_OAMALERT 14
/* RFC3429 */
#define MPLS_LABEL_EXTENSION 15
/* RFC7274 */
#endif
/* _MPLS_H */
include/linux/rtnetlink.h
View file @
ebfe4922
...
...
@@ -337,7 +337,7 @@ struct rtnexthop {
#define RTNH_F_DEAD 1
/* Nexthop is dead (used by multipath) */
#define RTNH_F_PERVASIVE 2
/* Do recursive gateway lookup */
#define RTNH_F_ONLINK 4
/* Gateway is forced on link */
#define RTNH_F_
EXTERNAL 8
/* Route installed externally
*/
#define RTNH_F_
OFFLOAD 8
/* offloaded route
*/
/* Macros to handle hexthops */
...
...
include/linux/tcp.h
View file @
ebfe4922
...
...
@@ -112,6 +112,7 @@ enum {
#define TCP_FASTOPEN 23
/* Enable FastOpen on listeners */
#define TCP_TIMESTAMP 24
#define TCP_NOTSENT_LOWAT 25
/* limit number of unsent bytes in write queue */
#define TCP_CC_INFO 26
/* Get Congestion Control (optional) info */
struct
tcp_repair_opt
{
__u32
opt_code
;
...
...
@@ -189,6 +190,8 @@ struct tcp_info {
__u64
tcpi_pacing_rate
;
__u64
tcpi_max_pacing_rate
;
__u64
tcpi_bytes_acked
;
/* RFC4898 tcpEStatsAppHCThruOctetsAcked */
__u64
tcpi_bytes_received
;
/* RFC4898 tcpEStatsAppHCThruOctetsReceived */
};
/* for TCP_MD5SIG socket option */
...
...
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