~ubuntu-branches/ubuntu/lucid/wpasupplicant/lucid

« back to all changes in this revision

Viewing changes to driver_ndis.h

  • Committer: Bazaar Package Importer
  • Author(s): Kyle McMartin
  • Date: 2005-02-15 00:51:28 UTC
  • Revision ID: james.westby@ubuntu.com-20050215005128-xr4m8owiunur2008
Tags: upstream-0.3.8
ImportĀ upstreamĀ versionĀ 0.3.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DRIVER_NDIS_H
 
2
#define DRIVER_NDIS_H
 
3
 
 
4
struct ndis_pmkid_entry {
 
5
        struct ndis_pmkid_entry *next;
 
6
        u8 bssid[ETH_ALEN];
 
7
        u8 pmkid[16];
 
8
};
 
9
 
 
10
struct wpa_driver_ndis_data {
 
11
        void *ctx;
 
12
        char ifname[100];
 
13
        u8 own_addr[ETH_ALEN];
 
14
        LPADAPTER adapter;
 
15
        u8 bssid[ETH_ALEN];
 
16
 
 
17
        int has_capability;
 
18
        int no_of_pmkid;
 
19
        int radio_enabled;
 
20
        struct wpa_driver_capa capa;
 
21
        struct ndis_pmkid_entry *pmkid;
 
22
        int event_sock;
 
23
        char *adapter_desc;
 
24
};
 
25
 
 
26
#endif /* DRIVER_NDIS_H */