⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iw_ndis.h

📁 改文件可以安装无线网卡在linux下的驱动,大家可以在网站上查找一下用法
💻 H
字号:
/* *  Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *  GNU General Public License for more details. * */#ifndef IW_NDIS_H#define IW_NDIS_H#include "ndis.h"struct ndis_encr_key {	ULONG struct_size;	ULONG index;	ULONG length;	UCHAR key[NDIS_ENCODING_TOKEN_MAX];};struct ndis_add_key {	ULONG struct_size;	ndis_key_index index;	ULONG length;	mac_address bssid;	UCHAR pad[6];	ndis_key_rsc rsc;	UCHAR key[NDIS_ENCODING_TOKEN_MAX];};struct ndis_remove_key {	ULONG struct_size;	ndis_key_index index;	mac_address bssid;};struct ndis_fixed_ies {	UCHAR time_stamp[8];	USHORT beacon_interval;	USHORT capa;};struct ndis_variable_ies {	ULONG elem_id;	UCHAR length;	UCHAR data[1];};struct ndis_assoc_info {	ULONG length;	USHORT req_ies;	struct req_ie {		USHORT capa;		USHORT listen_interval;		mac_address cur_ap_address;	} req_ie;	ULONG req_ie_length;	ULONG offset_req_ies;	USHORT resp_ies;	struct resp_ie {		USHORT capa;		USHORT status_code;		USHORT assoc_id;	} resp_ie;	ULONG resp_ie_length;	ULONG offset_resp_ies;};struct packed ndis_configuration {	ULONG length;	ULONG beacon_period;	ULONG atim_window;	ULONG ds_config;	struct ndis_configuration_fh {		ULONG length;		ULONG hop_pattern;		ULONG hop_set;		ULONG dwell_time;	} fh_config;};struct ndis_ssid_item {	ULONG length;	mac_address mac;	UCHAR reserved[2];	struct ndis_essid ssid;	ULONG privacy;	LONG rssi;	UINT net_type;	struct ndis_configuration config;	UINT mode;	ndis_rates rates;	ULONG ie_length;	UCHAR ies[1];};struct ndis_bssid_list {	ULONG num_items;	struct ndis_ssid_item items[1];};enum ndis_priv_filter {	Ndis802_11PrivFilterAcceptAll,	Ndis802_11PrivFilter8021xWEP};enum network_type {	Ndis802_11FH,	Ndis802_11DS,	Ndis802_11OFDM5,	Ndis802_11OFDM24,	/* MSDN site uses Ndis802_11Automode, which is not mentioned	 * in DDK, so add one and assign it to	 * Ndis802_11NetworkTypeMax */	Ndis802_11Automode,	Ndis802_11NetworkTypeMax = Ndis802_11Automode};enum ndis_power {	NDIS_POWER_OFF = 0,	NDIS_POWER_MAX,	NDIS_POWER_MIN,};enum ndis_power_profile {	NdisPowerProfileBattery,	NdisPowerProfileAcOnLine};struct ndis_auth_req {	ULONG length;	mac_address bssid;	ULONG flags;};int add_wep_key(struct ndis_handle *handle, char *key, int key_len, int index);extern const struct iw_handler_def ndis_handler_def;int set_essid(struct ndis_handle *handle, const char *ssid, int ssid_len);int set_infra_mode(struct ndis_handle *handle,		   enum network_infrastructure mode);int get_ap_address(struct ndis_handle *handle, mac_address mac);int set_auth_mode(struct ndis_handle *handle, int auth_mode);int set_encr_mode(struct ndis_handle *handle, int encr_mode);int set_privacy_filter(struct ndis_handle *handle, int flags);int set_scan(struct ndis_handle *handle);/* WPA support */#define PRIV_RESET	 		SIOCIWFIRSTPRIV+16#define PRIV_POWER_PROFILE	 	SIOCIWFIRSTPRIV+17#define PRIV_NETWORK_TYPE	 	SIOCIWFIRSTPRIV+18/* these have to match what is in wpa_supplicant */typedef enum { WPA_ALG_NONE, WPA_ALG_WEP, WPA_ALG_TKIP, WPA_ALG_CCMP } wpa_alg;typedef enum { CIPHER_NONE, CIPHER_WEP40, CIPHER_TKIP, CIPHER_CCMP,	       CIPHER_WEP104 } wpa_cipher;typedef enum { KEY_MGMT_802_1X, KEY_MGMT_PSK, KEY_MGMT_NONE,	       KEY_MGMT_802_1X_NO_WPA, KEY_MGMT_WPA_NONE } wpa_key_mgmt;#define AUTH_ALG_OPEN_SYSTEM	0x01#define AUTH_ALG_SHARED_KEY	0x02#define AUTH_ALG_LEAP		0x04#define IEEE80211_MODE_INFRA	0#define IEEE80211_MODE_IBSS	1#define RSN_INFO_ELEM		0x30struct wpa_key {	wpa_alg alg;	u8 *addr;	int key_index;	int set_tx;	u8 *seq;	size_t seq_len;	u8 *key;	size_t key_len;};struct wpa_assoc_info {	const u8 *bssid;	const u8 *ssid;	size_t ssid_len;	int freq;	const u8 *wpa_ie;	size_t wpa_ie_len;	wpa_cipher pairwise_suite;	wpa_cipher group_suite;	wpa_key_mgmt key_mgmt_suite;	int auth_alg;	int mode;};#define WPA_SET_WPA 			SIOCIWFIRSTPRIV+1#define WPA_SET_KEY 			SIOCIWFIRSTPRIV+2#define WPA_ASSOCIATE		 	SIOCIWFIRSTPRIV+3#define WPA_DISASSOCIATE 		SIOCIWFIRSTPRIV+4#define WPA_DROP_UNENCRYPTED 		SIOCIWFIRSTPRIV+5#define WPA_SET_COUNTERMEASURES 	SIOCIWFIRSTPRIV+6#define WPA_DEAUTHENTICATE	 	SIOCIWFIRSTPRIV+7#define WPA_SET_AUTH_ALG	 	SIOCIWFIRSTPRIV+8#define WPA_INIT			SIOCIWFIRSTPRIV+9#define WPA_DEINIT			SIOCIWFIRSTPRIV+10#endif // IW_NDIS_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -