003 File Manager
Current Path:
/usr/src/contrib/wpa/src/drivers
usr
/
src
/
contrib
/
wpa
/
src
/
drivers
/
📁
..
📄
driver.h
(172.8 KB)
📄
driver_atheros.c
(64 KB)
📄
driver_bsd.c
(45.78 KB)
📄
driver_common.c
(6.26 KB)
📄
driver_hostap.c
(29.15 KB)
📄
driver_macsec_linux.c
(39.2 KB)
📄
driver_macsec_qca.c
(25.05 KB)
📄
driver_ndis.c
(84.24 KB)
📄
driver_ndis.h
(1.48 KB)
📄
driver_ndis_.c
(2.66 KB)
📄
driver_nl80211.h
(9.4 KB)
📄
driver_nl80211_android.c
(4.49 KB)
📄
driver_nl80211_capa.c
(62.85 KB)
📄
driver_nl80211_event.c
(79.11 KB)
📄
driver_nl80211_monitor.c
(13.24 KB)
📄
driver_nl80211_scan.c
(34.35 KB)
📄
driver_openbsd.c
(3.01 KB)
📄
driver_privsep.c
(20.6 KB)
📄
driver_wired.c
(9.44 KB)
📄
driver_wired_common.c
(8.05 KB)
📄
driver_wired_common.h
(1.06 KB)
📄
drivers.c
(1.36 KB)
📄
linux_defines.h
(992 B)
📄
ndis_events.c
(21.21 KB)
📄
nl80211_copy.h
(270.99 KB)
Editing: driver_ndis.h
/* * WPA Supplicant - Windows/NDIS driver interface * Copyright (c) 2004-2006, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef DRIVER_NDIS_H #define DRIVER_NDIS_H #ifdef CONFIG_NDIS_EVENTS_INTEGRATED struct ndis_events_data; struct ndis_events_data * ndis_events_init(HANDLE *read_pipe, HANDLE *event, const char *ifname, const char *desc); void ndis_events_deinit(struct ndis_events_data *events); #endif /* CONFIG_NDIS_EVENTS_INTEGRATED */ struct 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]; /* GUID: {7EE3EFE5-C165-472F-986D-F6FBEDFE8C8D} */ #ifdef _WIN32_WCE TCHAR *adapter_name; HANDLE event_queue; /* NDISUIO notifier MsgQueue */ HANDLE connected_event; /* WpaSupplicantConnected event */ #endif /* _WIN32_WCE */ u8 own_addr[ETH_ALEN]; #ifdef CONFIG_USE_NDISUIO HANDLE ndisuio; #else /* CONFIG_USE_NDISUIO */ LPADAPTER adapter; #endif /* CONFIG_USE_NDISUIO */ u8 bssid[ETH_ALEN]; int has_capability; int no_of_pmkid; int radio_enabled; struct wpa_driver_capa capa; struct ndis_pmkid_entry *pmkid; char *adapter_desc; int wired; int native80211; int mode; int wzc_disabled; int oid_bssid_set; #ifdef CONFIG_NDIS_EVENTS_INTEGRATED HANDLE events_pipe, event_avail; struct ndis_events_data *events; #endif /* CONFIG_NDIS_EVENTS_INTEGRATED */ }; #endif /* DRIVER_NDIS_H */
Upload File
Create Folder