1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
typedef struct Wkey Wkey;
typedef struct Wnode Wnode;
typedef struct Wifi Wifi;
typedef struct Wifipkt Wifipkt;
enum {
Essidlen = 32,
};
/* cipher */
enum {
TKIP = 1,
CCMP = 2,
};
struct Wkey
{
int cipher;
int len;
uchar key[32];
uvlong tsc;
};
struct Wnode
{
uchar bssid[Eaddrlen];
char ssid[Essidlen+2];
int rsnelen;
uchar rsne[256];
Wkey txkey[1];
Wkey rxkey[5];
int ival;
int cap;
int aid;
int channel;
long lastseen;
};
struct Wifi
{
Ether *ether;
Queue *iq;
char *status;
Ref txseq;
void (*transmit)(Wifi*, Wnode*, Block*);
char essid[Essidlen+2];
Wnode *bss;
Wnode node[32];
};
struct Wifipkt
{
uchar fc[2];
uchar dur[2];
uchar a1[Eaddrlen];
uchar a2[Eaddrlen];
uchar a3[Eaddrlen];
uchar seq[2];
};
Wifi *wifiattach(Ether *ether, void (*transmit)(Wifi*, Wnode*, Block*));
void wifiiq(Wifi*, Block*);
long wifistat(Wifi*, void*, long, ulong);
long wifictl(Wifi*, void*, long);
|