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