Lines Matching defs:libipw_device
718 struct libipw_device { struct
719 struct net_device *dev;
720 struct wireless_dev wdev;
721 struct libipw_security sec;
724 struct libipw_stats ieee_stats;
726 struct libipw_geo geo;
727 struct ieee80211_supported_band bg_band;
728 struct ieee80211_supported_band a_band;
731 struct list_head network_free_list;
732 struct list_head network_list;
733 struct libipw_network *networks[MAX_NETWORK_COUNT];
734 int scans;
735 int scan_age;
737 int iw_mode; /* operating mode (IW_MODE_*) */
738 struct iw_spy_data spy_data; /* iwspy support */
740 spinlock_t lock;
742 int tx_headroom; /* Set to size of any additional room needed at front
744 u32 config;
747 int open_wep; /* Set to 1 to allow unencrypted frames */
750 int host_encrypt;
751 int host_encrypt_msdu;
752 int host_decrypt;
754 int host_mc_decrypt;
758 int host_strip_iv_icv;
760 int host_open_frag;
761 int ieee802_1x; /* is IEEE 802.1X used */
764 int wpa_enabled;
765 int drop_unencrypted;
766 int privacy_invoked;
767 size_t wpa_ie_len;
768 u8 *wpa_ie;
770 struct lib80211_crypt_info crypt_info;
772 int bcrx_sta_key; /* use individual keys to override default keys even
776 struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN];
777 unsigned int frag_next_idx;
778 u16 fts; /* Fragmentation Threshold */
779 u16 rts; /* RTS threshold */
782 u8 bssid[ETH_ALEN];
784 enum libipw_state state;
786 int mode; /* A, B, G */
787 int modulation; /* CCK, OFDM */
788 int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
789 int abg_true; /* ABG flag */
791 int perfect_rssi;
792 int worst_rssi;
794 u16 prev_seq_ctl; /* used to drop duplicate frames */
797 void (*set_security) (struct net_device * dev,
799 netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb,
801 int (*is_queue_full) (struct net_device * dev, int pri);
803 int (*handle_management) (struct net_device * dev,
805 int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
808 int (*handle_auth) (struct net_device * dev,
810 int (*handle_deauth) (struct net_device * dev,
812 int (*handle_action) (struct net_device * dev,
815 int (*handle_disassoc) (struct net_device * dev,
817 int (*handle_beacon) (struct net_device * dev,
820 int (*handle_probe_response) (struct net_device * dev,
823 int (*handle_probe_request) (struct net_device * dev,
847 return ((struct libipw_device *)netdev_priv(dev))->priv; in libipw_priv() argument