Lines Matching defs:libipw_device
777 struct libipw_device { struct
778 struct net_device *dev;
779 struct wireless_dev wdev;
780 struct libipw_security sec;
783 struct libipw_stats ieee_stats;
785 struct libipw_geo geo;
786 struct ieee80211_supported_band bg_band;
787 struct ieee80211_supported_band a_band;
790 struct list_head network_free_list;
791 struct list_head network_list;
792 struct libipw_network *networks[MAX_NETWORK_COUNT];
793 int scans;
794 int scan_age;
796 int iw_mode; /* operating mode (IW_MODE_*) */
797 struct iw_spy_data spy_data; /* iwspy support */
799 spinlock_t lock;
801 int tx_headroom; /* Set to size of any additional room needed at front
803 u32 config;
806 int open_wep; /* Set to 1 to allow unencrypted frames */
809 int host_encrypt;
810 int host_encrypt_msdu;
811 int host_decrypt;
813 int host_mc_decrypt;
817 int host_strip_iv_icv;
819 int host_open_frag;
820 int ieee802_1x; /* is IEEE 802.1X used */
823 int wpa_enabled;
824 int drop_unencrypted;
825 int privacy_invoked;
826 size_t wpa_ie_len;
827 u8 *wpa_ie;
829 struct lib80211_crypt_info crypt_info;
831 int bcrx_sta_key; /* use individual keys to override default keys even
835 struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN];
836 unsigned int frag_next_idx;
837 u16 fts; /* Fragmentation Threshold */
838 u16 rts; /* RTS threshold */
841 u8 bssid[ETH_ALEN];
843 enum libipw_state state;
845 int mode; /* A, B, G */
846 int modulation; /* CCK, OFDM */
847 int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
848 int abg_true; /* ABG flag */
850 int perfect_rssi;
851 int worst_rssi;
853 u16 prev_seq_ctl; /* used to drop duplicate frames */
856 void (*set_security) (struct net_device * dev,
858 netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb,
860 int (*is_queue_full) (struct net_device * dev, int pri);
862 int (*handle_management) (struct net_device * dev,
864 int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
867 int (*handle_auth) (struct net_device * dev,
869 int (*handle_deauth) (struct net_device * dev,
871 int (*handle_action) (struct net_device * dev,
874 int (*handle_disassoc) (struct net_device * dev,
876 int (*handle_beacon) (struct net_device * dev,
879 int (*handle_probe_response) (struct net_device * dev,
882 int (*handle_probe_request) (struct net_device * dev,
906 return ((struct libipw_device *)netdev_priv(dev))->priv; in libipw_priv() argument