1 #ifdef HAVE_ALLOCA_H
2 # include <alloca.h>
3 #endif
4 
5 #include <sys/types.h>
6 #include <netinet/in.h>
7 #include <arpa/inet.h>
8 
9 #include <ctype.h>
10 #include <inttypes.h>
11 #include <stdbool.h>
12 #include <stdint.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 
17 #if DEBUG
18 # define VERBOSE(format, ...) do { printf(format, ## __VA_ARGS__); } while (0)
19 #else
20 # define VERBOSE(format, ...)
21 #endif
22