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

📄 driver_ndis.h

📁 一个Linux下无线网卡的设置工具
💻 H
字号:
/* * WPA Supplicant - Windows/NDIS driver interface * Copyright (c) 2004-2005, Jouni Malinen <jkmaline@cc.hut.fi> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Alternatively, this software may be distributed under the terms of BSD * license. * * See README and COPYING for more details. */#ifndef DRIVER_NDIS_H#define DRIVER_NDIS_Hstruct ndis_pmkid_entry {	struct ndis_pmkid_entry *next;	u8 bssid[ETH_ALEN];	u8 pmkid[16];};struct wpa_driver_ndis_data {	void *ctx;	char ifname[100];	u8 own_addr[ETH_ALEN];	LPADAPTER adapter;	u8 bssid[ETH_ALEN];	int has_capability;	int no_of_pmkid;	int radio_enabled;	struct wpa_driver_capa capa;	struct ndis_pmkid_entry *pmkid;	int event_sock;	char *adapter_desc;	int wired;};#endif /* DRIVER_NDIS_H */

⌨️ 快捷键说明

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