27 lines
461 B
C
27 lines
461 B
C
#ifndef DRIVER_NDIS_H
|
|
#define DRIVER_NDIS_H
|
|
|
|
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];
|
|
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;
|
|
};
|
|
|
|
#endif /* DRIVER_NDIS_H */
|