diff options
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h new file mode 100644 index 000000000000..783a11437a57 --- /dev/null +++ b/include/net/cfg80211.h | |||
@@ -0,0 +1,36 @@ | |||
1 | #ifndef __NET_CFG80211_H | ||
2 | #define __NET_CFG80211_H | ||
3 | |||
4 | #include <linux/netlink.h> | ||
5 | #include <linux/skbuff.h> | ||
6 | #include <net/genetlink.h> | ||
7 | |||
8 | /* | ||
9 | * 802.11 configuration in-kernel interface | ||
10 | * | ||
11 | * Copyright 2006 Johannes Berg <johannes@sipsolutions.net> | ||
12 | */ | ||
13 | |||
14 | /* from net/wireless.h */ | ||
15 | struct wiphy; | ||
16 | |||
17 | /** | ||
18 | * struct cfg80211_ops - backend description for wireless configuration | ||
19 | * | ||
20 | * This struct is registered by fullmac card drivers and/or wireless stacks | ||
21 | * in order to handle configuration requests on their interfaces. | ||
22 | * | ||
23 | * All callbacks except where otherwise noted should return 0 | ||
24 | * on success or a negative error code. | ||
25 | * | ||
26 | * @add_virtual_intf: create a new virtual interface with the given name | ||
27 | * | ||
28 | * @del_virtual_intf: remove the virtual interface determined by ifindex. | ||
29 | */ | ||
30 | struct cfg80211_ops { | ||
31 | int (*add_virtual_intf)(struct wiphy *wiphy, char *name, | ||
32 | unsigned int type); | ||
33 | int (*del_virtual_intf)(struct wiphy *wiphy, int ifindex); | ||
34 | }; | ||
35 | |||
36 | #endif /* __NET_CFG80211_H */ | ||