1 /*
2  * hexinject.h
3  *
4  *  Created on: 08/mag/2010
5  *      Author: Acri Emanuele
6  */
7 
8 #ifndef HEXINJECTION_H_
9 #define HEXINJECTION_H_
10 
11 #include <pcap.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <stdint.h>
16 #include <getopt.h>
17 #include <assert.h>
18 #include <arpa/inet.h>
19 
20 #include "hexstring.h"
21 #include "prettypacket.h"
22 #include "hexpcap.h"
23 #include "argparser.h"
24 
25 //#include "hexdump.h"
26 
27 #define BUFFER_SIZE 8192
28 
29 #endif /* HEXINJECTION_H_ */
30 
31