small fixes in documentation + initial checkin of wep - crack tool
[my-code/hdw-sniff.git] / wep.h
1 /* wep .h
2  *
3  * hackbard@hackdaworld.org
4  *
5  */
6
7 #include "network.h"
8 #include "list.h"
9 #include "event.h"
10
11 #define MAX_C_SF 64
12 #define MAX_C_FLITE 32
13 #define MAX_X_WL 64
14 #define MAX_TEXT 128
15 #define MAX_BUF 256
16
17 #define PORT 1025
18
19 typedef struct s_wep {
20   t_list bssid;
21   t_network net;
22   t_event event;
23   int port;
24   char savefile[MAX_C_SF];
25   int sf_fd;
26   unsigned char sf;
27   char flite[MAX_C_FLITE];
28   unsigned char f;
29   char wordlist[MAX_C_WL];
30 } t_wep;
31
32