Lines Matching defs:libipw_device

713 struct libipw_device {  struct
714 struct net_device *dev;
715 struct wireless_dev wdev;
716 struct libipw_security sec;
719 struct libipw_stats ieee_stats;
721 struct libipw_geo geo;
722 struct ieee80211_supported_band bg_band;
723 struct ieee80211_supported_band a_band;
726 struct list_head network_free_list;
727 struct list_head network_list;
728 struct libipw_network *networks[MAX_NETWORK_COUNT];
729 int scans;
730 int scan_age;
732 int iw_mode; /* operating mode (IW_MODE_*) */
733 struct iw_spy_data spy_data; /* iwspy support */
735 spinlock_t lock;
737 int tx_headroom; /* Set to size of any additional room needed at front
739 u32 config;
742 int open_wep; /* Set to 1 to allow unencrypted frames */
745 int host_encrypt;
746 int host_encrypt_msdu;
747 int host_decrypt;
749 int host_mc_decrypt;
753 int host_strip_iv_icv;
755 int host_open_frag;
756 int ieee802_1x; /* is IEEE 802.1X used */
759 int wpa_enabled;
760 int drop_unencrypted;
761 int privacy_invoked;
762 size_t wpa_ie_len;
763 u8 *wpa_ie;
765 struct lib80211_crypt_info crypt_info;
767 int bcrx_sta_key; /* use individual keys to override default keys even
771 struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN];
772 unsigned int frag_next_idx;
773 u16 fts; /* Fragmentation Threshold */
774 u16 rts; /* RTS threshold */
777 u8 bssid[ETH_ALEN];
779 enum libipw_state state;
781 int mode; /* A, B, G */
782 int modulation; /* CCK, OFDM */
783 int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
784 int abg_true; /* ABG flag */
786 int perfect_rssi;
787 int worst_rssi;
789 u16 prev_seq_ctl; /* used to drop duplicate frames */
792 void (*set_security) (struct net_device * dev,
794 netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb,
796 int (*is_queue_full) (struct net_device * dev, int pri);
798 int (*handle_management) (struct net_device * dev,
800 int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
803 int (*handle_auth) (struct net_device * dev,
805 int (*handle_deauth) (struct net_device * dev,
807 int (*handle_action) (struct net_device * dev,
810 int (*handle_disassoc) (struct net_device * dev,
812 int (*handle_beacon) (struct net_device * dev,
815 int (*handle_probe_response) (struct net_device * dev,
818 int (*handle_probe_request) (struct net_device * dev,
842 return ((struct libipw_device *)netdev_priv(dev))->priv; in libipw_priv() argument