plan9fox/sys/src/9/pc/wifi.h
cinap_lenrek 3b87d6114d wifi: first attempt on negotiating data rates
driver sets wifi->rates array to tell wifi layer what
rates it supports. when we receive beacon, we determine
the minimum and maximum data rates and set wn->minrate
and wn->maxrate to point to the entries in wifi->rates.

it is the responsibility of the driver to use this
information on transmit.
2014-04-21 03:43:51 +02:00

92 lines
1.3 KiB
C

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];
char *status;
int rsnelen;
uchar rsne[258];
Wkey txkey[1];
Wkey rxkey[5];
int aid; /* association id */
ulong lastsend;
ulong lastseen;
uchar *minrate; /* pointers into wifi->rates */
uchar *maxrate;
/* stuff from beacon */
int ival;
int cap;
int channel;
int brsnelen;
uchar brsne[258];
};
struct Wifi
{
Ether *ether;
int debug;
Queue *iq;
ulong watchdog;
Ref txseq;
void (*transmit)(Wifi*, Wnode*, Block*);
/* for searching */
uchar bssid[Eaddrlen];
char essid[Essidlen+2];
/* supported data rates by hardware */
uchar *rates;
/* effective base station */
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];
uchar a4[Eaddrlen];
};
Wifi *wifiattach(Ether *ether, void (*transmit)(Wifi*, Wnode*, Block*));
void wifiiq(Wifi*, Block*);
int wifihdrlen(Wifipkt*);
long wifistat(Wifi*, void*, long, ulong);
long wifictl(Wifi*, void*, long);