/contrib/bind9/bin/named/include/named/tkeyconf.h

https://bitbucket.org/freebsd/freebsd-head/ · C Header · 53 lines · 11 code · 9 blank · 33 comment · 0 complexity · b3463b919bdf9681f4ae7d1b2ac8a85f MD5 · raw file

  1. /*
  2. * Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
  3. * Copyright (C) 1999-2001 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: tkeyconf.h,v 1.16 2007/06/19 23:46:59 tbox Exp $ */
  18. #ifndef NS_TKEYCONF_H
  19. #define NS_TKEYCONF_H 1
  20. /*! \file */
  21. #include <isc/types.h>
  22. #include <isc/lang.h>
  23. #include <isccfg/cfg.h>
  24. ISC_LANG_BEGINDECLS
  25. isc_result_t
  26. ns_tkeyctx_fromconfig(const cfg_obj_t *options, isc_mem_t *mctx,
  27. isc_entropy_t *ectx, dns_tkeyctx_t **tctxp);
  28. /*%<
  29. * Create a TKEY context and configure it, including the default DH key
  30. * and default domain, according to 'options'.
  31. *
  32. * Requires:
  33. *\li 'cfg' is a valid configuration options object.
  34. *\li 'mctx' is not NULL
  35. *\li 'ectx' is not NULL
  36. *\li 'tctx' is not NULL
  37. *\li '*tctx' is NULL
  38. *
  39. * Returns:
  40. *\li ISC_R_SUCCESS
  41. *\li ISC_R_NOMEMORY
  42. */
  43. ISC_LANG_ENDDECLS
  44. #endif /* NS_TKEYCONF_H */