Lines Matching defs:libipw_device

714 struct libipw_device {  struct
715 struct net_device *dev;
716 struct wireless_dev wdev;
717 struct libipw_security sec;
720 struct libipw_stats ieee_stats;
722 struct libipw_geo geo;
723 struct ieee80211_supported_band bg_band;
724 struct ieee80211_supported_band a_band;
727 struct list_head network_free_list;
728 struct list_head network_list;
729 struct libipw_network *networks[MAX_NETWORK_COUNT];
730 int scans;
731 int scan_age;
733 int iw_mode; /* operating mode (IW_MODE_*) */
734 struct iw_spy_data spy_data; /* iwspy support */
736 spinlock_t lock;
738 int tx_headroom; /* Set to size of any additional room needed at front
740 u32 config;
743 int open_wep; /* Set to 1 to allow unencrypted frames */
746 int host_encrypt;
747 int host_encrypt_msdu;
748 int host_decrypt;
750 int host_mc_decrypt;
754 int host_strip_iv_icv;
756 int host_open_frag;
757 int ieee802_1x; /* is IEEE 802.1X used */
760 int wpa_enabled;
761 int drop_unencrypted;
762 int privacy_invoked;
763 size_t wpa_ie_len;
764 u8 *wpa_ie;
766 struct lib80211_crypt_info crypt_info;
768 int bcrx_sta_key; /* use individual keys to override default keys even
772 struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN];
773 unsigned int frag_next_idx;
774 u16 fts; /* Fragmentation Threshold */
775 u16 rts; /* RTS threshold */
778 u8 bssid[ETH_ALEN];
780 enum libipw_state state;
782 int mode; /* A, B, G */
783 int modulation; /* CCK, OFDM */
784 int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
785 int abg_true; /* ABG flag */
787 int perfect_rssi;
788 int worst_rssi;
790 u16 prev_seq_ctl; /* used to drop duplicate frames */
793 void (*set_security) (struct net_device * dev,
795 netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb,
797 int (*is_queue_full) (struct net_device * dev, int pri);
799 int (*handle_management) (struct net_device * dev,
801 int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
804 int (*handle_auth) (struct net_device * dev,
806 int (*handle_deauth) (struct net_device * dev,
808 int (*handle_action) (struct net_device * dev,
811 int (*handle_disassoc) (struct net_device * dev,
813 int (*handle_beacon) (struct net_device * dev,
816 int (*handle_probe_response) (struct net_device * dev,
819 int (*handle_probe_request) (struct net_device * dev,
843 return ((struct libipw_device *)netdev_priv(dev))->priv; in libipw_priv() argument