libtins  4.0
config.h
1 #ifndef TINS_CONFIG_H
2 #define TINS_CONFIG_H
3 
4 /* Define if the compiler supports basic C++11 syntax */
5 #define TINS_HAVE_CXX11
6 
7 /* Have IEEE 802.11 support */
8 #define TINS_HAVE_DOT11
9 
10 /* Have WPA2 decryption library */
11 #define TINS_HAVE_WPA2_DECRYPTION
12 
13 /* Use pcap_sendpacket to send l2 packets */
14 /* #undef TINS_HAVE_PACKET_SENDER_PCAP_SENDPACKET */
15 
16 /* Have TCPIP classes */
17 #define TINS_HAVE_TCPIP
18 
19 /* Have TCP ACK tracking */
20 #define TINS_HAVE_ACK_TRACKER
21 
22 /* Have TCP stream custom data */
23 #define TINS_HAVE_TCP_STREAM_CUSTOM_DATA
24 
25 /* Have GCC builtin swap */
26 #define TINS_HAVE_GCC_BUILTIN_SWAP
27 
28 /* Have WPA2Decrypter callbacks */
29 #define TINS_HAVE_WPA2_CALLBACKS
30 
31 /* Have libpcap */
32 #define TINS_HAVE_PCAP
33 
34 /* Version macros */
35 #define TINS_VERSION_MAJOR 4
36 #define TINS_VERSION_MINOR 0
37 #define TINS_VERSION_PATCH 0
38 
39 #endif // TINS_CONFIG_H