added ignore file
[my-code/hdw-sniff.git] / list.h
1 /*
2  * list.h - list header file
3  *
4  * author: hackbard@hackdaworld.dyndns.org
5  *
6  */
7
8 #define MAX_BSSID_CHARS 6
9 #define MAX_SSID_CHARS 32
10
11 struct bssid
12 {
13  char bssid[MAX_BSSID_CHARS]; /* the bssid mac address */
14  struct bss *next; /* next bssid */
15 }
16
17 struct bsslist
18 {
19  char ssid[MAX_SSID_CHARS]; /* network name of this bss */
20  char struct *bssid; /* pointer to bssid mac addresses of this bss */
21  struct bsslist *next; /* next sniffed bss */
22 }