X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fhdw-sniff.git;a=blobdiff_plain;f=wep.h;fp=wep.h;h=ef71dc84676d2e885ba6ce3da4f12b2046f13260;hp=0000000000000000000000000000000000000000;hb=aac4f0a3f47f66a35722e564a2e57c20cc8a70ee;hpb=99dd3ea262fb1f209ff341f51a97a6783150629b diff --git a/wep.h b/wep.h new file mode 100644 index 0000000..ef71dc8 --- /dev/null +++ b/wep.h @@ -0,0 +1,32 @@ +/* wep .h + * + * hackbard@hackdaworld.org + * + */ + +#include "network.h" +#include "list.h" +#include "event.h" + +#define MAX_C_SF 64 +#define MAX_C_FLITE 32 +#define MAX_X_WL 64 +#define MAX_TEXT 128 +#define MAX_BUF 256 + +#define PORT 1025 + +typedef struct s_wep { + t_list bssid; + t_network net; + t_event event; + int port; + char savefile[MAX_C_SF]; + int sf_fd; + unsigned char sf; + char flite[MAX_C_FLITE]; + unsigned char f; + char wordlist[MAX_C_WL]; +} t_wep; + +