X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_dns.h;h=efc790319cebea5e3253cad748de71d4e8923aaa;hb=66f9d645f883eee0aa408428eefdebdcc6dcfa7e;hp=6a613a78e985c2701d038efe9a999d3cb29a1392;hpb=27f7e9a53a309c23143691c37e50727a5f0e2386;p=collectd.git diff --git a/src/utils_dns.h b/src/utils_dns.h index 6a613a78..efc79031 100644 --- a/src/utils_dns.h +++ b/src/utils_dns.h @@ -33,8 +33,14 @@ * Florian octo Forster */ +#include "config.h" + #include -#include +#include + +#if HAVE_PCAP_H +# include +#endif #define T_MAX 65536 #define OP_MAX 16 @@ -68,11 +74,15 @@ extern int qtype_counts[T_MAX]; extern int opcode_counts[OP_MAX]; extern int qclass_counts[C_MAX]; +#if HAVE_PCAP_H void dnstop_set_pcap_obj (pcap_t *po); +#endif void dnstop_set_callback (void (*cb) (const rfc1035_header_t *)); void ignore_list_add_name (const char *name); +#if HAVE_PCAP_H void handle_pcap (u_char * udata, const struct pcap_pkthdr *hdr, const u_char * pkt); +#endif const char *qtype_str(int t); const char *opcode_str(int o);