/contrib/bind9/bin/check/check-tool.h

https://bitbucket.org/freebsd/freebsd-head/ · C Header · 60 lines · 29 code · 13 blank · 18 comment · 0 complexity · 0fd3db653c920895ad9e8ca08cc21cf6 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004, 2005, 2007, 2010 Internet Systems Consortium, Inc. ("ISC")
  3. * Copyright (C) 2000-2002 Internet Software Consortium.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  10. * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  11. * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  12. * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  13. * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  14. * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15. * PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. /* $Id: check-tool.h,v 1.16 2010/09/07 23:46:59 tbox Exp $ */
  18. #ifndef CHECK_TOOL_H
  19. #define CHECK_TOOL_H
  20. /*! \file */
  21. #include <isc/lang.h>
  22. #include <isc/stdio.h>
  23. #include <isc/types.h>
  24. #include <dns/masterdump.h>
  25. #include <dns/types.h>
  26. ISC_LANG_BEGINDECLS
  27. isc_result_t
  28. setup_logging(isc_mem_t *mctx, FILE *errout, isc_log_t **logp);
  29. isc_result_t
  30. load_zone(isc_mem_t *mctx, const char *zonename, const char *filename,
  31. dns_masterformat_t fileformat, const char *classname,
  32. dns_zone_t **zonep);
  33. isc_result_t
  34. dump_zone(const char *zonename, dns_zone_t *zone, const char *filename,
  35. dns_masterformat_t fileformat, const dns_master_style_t *style);
  36. #ifdef _WIN32
  37. void InitSockets(void);
  38. void DestroySockets(void);
  39. #endif
  40. extern int debug;
  41. extern isc_boolean_t nomerge;
  42. extern isc_boolean_t docheckmx;
  43. extern isc_boolean_t docheckns;
  44. extern isc_boolean_t dochecksrv;
  45. extern unsigned int zone_options;
  46. ISC_LANG_ENDDECLS
  47. #endif