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
f55fa86d
Commit
f55fa86d
authored
Sep 28, 2014
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update headers to 3.17.0 net-next
parent
2f7fbec2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
0 deletions
+36
-0
include/linux/if_ether.h
include/linux/if_ether.h
+1
-0
include/linux/if_link.h
include/linux/if_link.h
+12
-0
include/linux/if_tunnel.h
include/linux/if_tunnel.h
+16
-0
include/linux/xfrm.h
include/linux/xfrm.h
+7
-0
No files found.
include/linux/if_ether.h
View file @
f55fa86d
...
...
@@ -128,6 +128,7 @@
#define ETH_P_PHONET 0x00F5
/* Nokia Phonet frames */
#define ETH_P_IEEE802154 0x00F6
/* IEEE802.15.4 frame */
#define ETH_P_CAIF 0x00F7
/* ST-Ericsson CAIF protocol */
#define ETH_P_XDSA 0x00F8
/* Multiplexed DSA protocol */
/*
* This is an Ethernet frame header.
...
...
include/linux/if_link.h
View file @
f55fa86d
...
...
@@ -213,6 +213,18 @@ enum in6_addr_gen_mode {
IN6_ADDR_GEN_MODE_NONE
,
};
/* Bridge section */
enum
{
IFLA_BR_UNSPEC
,
IFLA_BR_FORWARD_DELAY
,
IFLA_BR_HELLO_TIME
,
IFLA_BR_MAX_AGE
,
__IFLA_BR_MAX
,
};
#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
enum
{
BRIDGE_MODE_UNSPEC
,
BRIDGE_MODE_HAIRPIN
,
...
...
include/linux/if_tunnel.h
View file @
f55fa86d
...
...
@@ -53,10 +53,22 @@ enum {
IFLA_IPTUN_6RD_RELAY_PREFIX
,
IFLA_IPTUN_6RD_PREFIXLEN
,
IFLA_IPTUN_6RD_RELAY_PREFIXLEN
,
IFLA_IPTUN_ENCAP_TYPE
,
IFLA_IPTUN_ENCAP_FLAGS
,
IFLA_IPTUN_ENCAP_SPORT
,
IFLA_IPTUN_ENCAP_DPORT
,
__IFLA_IPTUN_MAX
,
};
#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
enum
tunnel_encap_types
{
TUNNEL_ENCAP_NONE
,
TUNNEL_ENCAP_FOU
,
};
#define TUNNEL_ENCAP_FLAG_CSUM (1<<0)
#define TUNNEL_ENCAP_FLAG_CSUM6 (1<<1)
/* SIT-mode i_flags */
#define SIT_ISATAP 0x0001
...
...
@@ -94,6 +106,10 @@ enum {
IFLA_GRE_ENCAP_LIMIT
,
IFLA_GRE_FLOWINFO
,
IFLA_GRE_FLAGS
,
IFLA_GRE_ENCAP_TYPE
,
IFLA_GRE_ENCAP_FLAGS
,
IFLA_GRE_ENCAP_SPORT
,
IFLA_GRE_ENCAP_DPORT
,
__IFLA_GRE_MAX
,
};
...
...
include/linux/xfrm.h
View file @
f55fa86d
...
...
@@ -328,6 +328,8 @@ enum xfrm_spdattr_type_t {
XFRMA_SPD_UNSPEC
,
XFRMA_SPD_INFO
,
XFRMA_SPD_HINFO
,
XFRMA_SPD_IPV4_HTHRESH
,
XFRMA_SPD_IPV6_HTHRESH
,
__XFRMA_SPD_MAX
#define XFRMA_SPD_MAX (__XFRMA_SPD_MAX - 1)
...
...
@@ -347,6 +349,11 @@ struct xfrmu_spdhinfo {
__u32
spdhmcnt
;
};
struct
xfrmu_spdhthresh
{
__u8
lbits
;
__u8
rbits
;
};
struct
xfrm_usersa_info
{
struct
xfrm_selector
sel
;
struct
xfrm_id
id
;
...
...
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