| Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 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 |  | 
| Andy Green | 179f831 | 2007-07-10 19:29:38 +0200 | [diff] [blame] | 14 |  | 
 | 15 | /* Radiotap header iteration | 
 | 16 |  *   implemented in net/wireless/radiotap.c | 
 | 17 |  *   docs in Documentation/networking/radiotap-headers.txt | 
 | 18 |  */ | 
 | 19 | /** | 
 | 20 |  * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args | 
 | 21 |  * @rtheader: pointer to the radiotap header we are walking through | 
 | 22 |  * @max_length: length of radiotap header in cpu byte ordering | 
 | 23 |  * @this_arg_index: IEEE80211_RADIOTAP_... index of current arg | 
 | 24 |  * @this_arg: pointer to current radiotap arg | 
 | 25 |  * @arg_index: internal next argument index | 
 | 26 |  * @arg: internal next argument pointer | 
 | 27 |  * @next_bitmap: internal pointer to next present u32 | 
 | 28 |  * @bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present | 
 | 29 |  */ | 
 | 30 |  | 
 | 31 | struct ieee80211_radiotap_iterator { | 
 | 32 | 	struct ieee80211_radiotap_header *rtheader; | 
 | 33 | 	int max_length; | 
 | 34 | 	int this_arg_index; | 
 | 35 | 	u8 *this_arg; | 
 | 36 |  | 
 | 37 | 	int arg_index; | 
 | 38 | 	u8 *arg; | 
 | 39 | 	__le32 *next_bitmap; | 
 | 40 | 	u32 bitmap_shifter; | 
 | 41 | }; | 
 | 42 |  | 
 | 43 | extern int ieee80211_radiotap_iterator_init( | 
 | 44 |    struct ieee80211_radiotap_iterator *iterator, | 
 | 45 |    struct ieee80211_radiotap_header *radiotap_header, | 
 | 46 |    int max_length); | 
 | 47 |  | 
 | 48 | extern int ieee80211_radiotap_iterator_next( | 
 | 49 |    struct ieee80211_radiotap_iterator *iterator); | 
 | 50 |  | 
 | 51 |  | 
| Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 52 | /* from net/wireless.h */ | 
 | 53 | struct wiphy; | 
 | 54 |  | 
 | 55 | /** | 
 | 56 |  * struct cfg80211_ops - backend description for wireless configuration | 
 | 57 |  * | 
 | 58 |  * This struct is registered by fullmac card drivers and/or wireless stacks | 
 | 59 |  * in order to handle configuration requests on their interfaces. | 
 | 60 |  * | 
 | 61 |  * All callbacks except where otherwise noted should return 0 | 
 | 62 |  * on success or a negative error code. | 
 | 63 |  * | 
| Johannes Berg | 43fb45cb | 2007-04-24 14:07:27 -0700 | [diff] [blame] | 64 |  * All operations are currently invoked under rtnl for consistency with the | 
 | 65 |  * wireless extensions but this is subject to reevaluation as soon as this | 
 | 66 |  * code is used more widely and we have a first user without wext. | 
 | 67 |  * | 
| Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 68 |  * @add_virtual_intf: create a new virtual interface with the given name | 
 | 69 |  * | 
 | 70 |  * @del_virtual_intf: remove the virtual interface determined by ifindex. | 
 | 71 |  */ | 
 | 72 | struct cfg80211_ops { | 
 | 73 | 	int	(*add_virtual_intf)(struct wiphy *wiphy, char *name, | 
 | 74 | 				    unsigned int type); | 
 | 75 | 	int	(*del_virtual_intf)(struct wiphy *wiphy, int ifindex); | 
 | 76 | }; | 
 | 77 |  | 
 | 78 | #endif /* __NET_CFG80211_H */ |