Lines Matching defs:libipw_device

712 struct libipw_device {  struct
713 struct net_device *dev;
714 struct wireless_dev wdev;
715 struct libipw_security sec;
718 struct libipw_stats ieee_stats;
720 struct libipw_geo geo;
721 struct ieee80211_supported_band bg_band;
722 struct ieee80211_supported_band a_band;
725 struct list_head network_free_list;
726 struct list_head network_list;
727 struct libipw_network *networks[MAX_NETWORK_COUNT];
728 int scans;
729 int scan_age;
731 int iw_mode; /* operating mode (IW_MODE_*) */
732 struct iw_spy_data spy_data; /* iwspy support */
734 spinlock_t lock;
736 int tx_headroom; /* Set to size of any additional room needed at front
738 u32 config;
741 int open_wep; /* Set to 1 to allow unencrypted frames */
744 int host_encrypt;
745 int host_encrypt_msdu;
746 int host_decrypt;
748 int host_mc_decrypt;
752 int host_strip_iv_icv;
754 int host_open_frag;
755 int ieee802_1x; /* is IEEE 802.1X used */
758 int wpa_enabled;
759 int drop_unencrypted;
760 int privacy_invoked;
761 size_t wpa_ie_len;
762 u8 *wpa_ie;
764 struct lib80211_crypt_info crypt_info;
766 int bcrx_sta_key; /* use individual keys to override default keys even
770 struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN];
771 unsigned int frag_next_idx;
772 u16 fts; /* Fragmentation Threshold */
773 u16 rts; /* RTS threshold */
776 u8 bssid[ETH_ALEN];
778 enum libipw_state state;
780 int mode; /* A, B, G */
781 int modulation; /* CCK, OFDM */
782 int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
783 int abg_true; /* ABG flag */
785 int perfect_rssi;
786 int worst_rssi;
788 u16 prev_seq_ctl; /* used to drop duplicate frames */
791 void (*set_security) (struct net_device * dev,
793 netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb,
795 int (*is_queue_full) (struct net_device * dev, int pri);
797 int (*handle_management) (struct net_device * dev,
799 int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
802 int (*handle_auth) (struct net_device * dev,
804 int (*handle_deauth) (struct net_device * dev,
806 int (*handle_action) (struct net_device * dev,
809 int (*handle_disassoc) (struct net_device * dev,
811 int (*handle_beacon) (struct net_device * dev,
814 int (*handle_probe_response) (struct net_device * dev,
817 int (*handle_probe_request) (struct net_device * dev,
841 return ((struct libipw_device *)netdev_priv(dev))->priv; in libipw_priv() argument