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