X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_dns.h;h=83f0ea403e9809ab68c9261299119aa1537278d1;hb=6299d39b903cb87a3db5b6d2148a2d717754a30a;hp=6a613a78e985c2701d038efe9a999d3cb29a1392;hpb=db71b0fa19cc0217f1460499f891a36ecc8f1c8e;p=collectd.git diff --git a/src/utils_dns.h b/src/utils_dns.h index 6a613a78..83f0ea40 100644 --- a/src/utils_dns.h +++ b/src/utils_dns.h @@ -1,8 +1,7 @@ -#ifndef COLLECTD_UTILS_DNS_H -#define COLLECTD_UTILS_DNS_H 1 /* * collectd - src/utils_dns.h - * Copyright (C) 2006 Florian octo Forster + * Copyright (C) 2006 Florian octo Forster + * Copyright (C) 2002 The Measurement Factory, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,11 +29,23 @@ * POSSIBILITY OF SUCH DAMAGE. * * Authors: - * Florian octo Forster + * The Measurement Factory, Inc. + * Florian octo Forster */ +#ifndef COLLECTD_UTILS_DNS_H +#define COLLECTD_UTILS_DNS_H 1 + +#include "config.h" + #include -#include +#include + +#if HAVE_PCAP_H +# include +#endif + +#define DNS_MSG_HDR_SZ 12 #define T_MAX 65536 #define OP_MAX 16 @@ -68,11 +79,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);