/contrib/bind9/lib/dns/include/dst/result.h

https://bitbucket.org/freebsd/freebsd-head/ · C Header · 71 lines · 30 code · 12 blank · 29 comment · 0 complexity · 940a76b3457757efa00435d1e7bdeff4 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004-2008 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: result.h,v 1.9 2008/04/01 23:47:10 tbox Exp $ */
  18. #ifndef DST_RESULT_H
  19. #define DST_RESULT_H 1
  20. /*! \file dst/result.h */
  21. #include <isc/lang.h>
  22. #include <isc/resultclass.h>
  23. /*
  24. * Nothing in this file truly depends on <isc/result.h>, but the
  25. * DST result codes are considered to be publicly derived from
  26. * the ISC result codes, so including this file buys you the ISC_R_
  27. * namespace too.
  28. */
  29. #include <isc/result.h> /* Contractual promise. */
  30. #define DST_R_UNSUPPORTEDALG (ISC_RESULTCLASS_DST + 0)
  31. #define DST_R_OPENSSLFAILURE (ISC_RESULTCLASS_DST + 1)
  32. #define DST_R_NOCRYPTO (ISC_RESULTCLASS_DST + 2)
  33. #define DST_R_NULLKEY (ISC_RESULTCLASS_DST + 3)
  34. #define DST_R_INVALIDPUBLICKEY (ISC_RESULTCLASS_DST + 4)
  35. #define DST_R_INVALIDPRIVATEKEY (ISC_RESULTCLASS_DST + 5)
  36. /* 6 is unused */
  37. #define DST_R_WRITEERROR (ISC_RESULTCLASS_DST + 7)
  38. #define DST_R_INVALIDPARAM (ISC_RESULTCLASS_DST + 8)
  39. /* 9 is unused */
  40. /* 10 is unused */
  41. #define DST_R_SIGNFAILURE (ISC_RESULTCLASS_DST + 11)
  42. /* 12 is unused */
  43. /* 13 is unused */
  44. #define DST_R_VERIFYFAILURE (ISC_RESULTCLASS_DST + 14)
  45. #define DST_R_NOTPUBLICKEY (ISC_RESULTCLASS_DST + 15)
  46. #define DST_R_NOTPRIVATEKEY (ISC_RESULTCLASS_DST + 16)
  47. #define DST_R_KEYCANNOTCOMPUTESECRET (ISC_RESULTCLASS_DST + 17)
  48. #define DST_R_COMPUTESECRETFAILURE (ISC_RESULTCLASS_DST + 18)
  49. #define DST_R_NORANDOMNESS (ISC_RESULTCLASS_DST + 19)
  50. #define DST_R_BADKEYTYPE (ISC_RESULTCLASS_DST + 20)
  51. #define DST_R_NOENGINE (ISC_RESULTCLASS_DST + 21)
  52. #define DST_R_NRESULTS 22 /* Number of results */
  53. ISC_LANG_BEGINDECLS
  54. const char *
  55. dst_result_totext(isc_result_t);
  56. void
  57. dst_result_register(void);
  58. ISC_LANG_ENDDECLS
  59. #endif /* DST_RESULT_H */