-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nicolas Dichtel
authored and
David S. Miller
committed
Oct 28, 2012
1 parent
1e9af0e
commit 03deb6d
Showing
3 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f019948dbb388eacbc0fb61db1d30e686224df77 | ||
refs/heads/master: d900082bd9060dc955b181dae2f2adf86e27d747 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef _UAPI_LINUX_NETCONF_H_ | ||
#define _UAPI_LINUX_NETCONF_H_ | ||
|
||
#include <linux/types.h> | ||
#include <linux/netlink.h> | ||
|
||
struct netconfmsg { | ||
__u8 ncm_family; | ||
}; | ||
|
||
enum { | ||
NETCONFA_UNSPEC, | ||
NETCONFA_IFINDEX, | ||
NETCONFA_FORWARDING, | ||
__NETCONFA_MAX | ||
}; | ||
#define NETCONFA_MAX (__NETCONFA_MAX - 1) | ||
|
||
#define NETCONFA_IFINDEX_ALL -1 | ||
#define NETCONFA_IFINDEX_DEFAULT -2 | ||
|
||
#endif /* _UAPI_LINUX_NETCONF_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters