]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/bind9/lib/isccc/result.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / bind9 / lib / isccc / result.c
1 /*
2  * Portions Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001, 2003  Internet Software Consortium.
4  * Portions Copyright (C) 2001  Nominum, Inc.
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* $Id: result.c,v 1.5.18.2 2005/04/29 00:17:12 marka Exp $ */
20
21 /*! \file */
22
23 #include <config.h>
24
25 #include <isc/once.h>
26 #include <isc/util.h>
27
28 #include <isccc/result.h>
29 #include <isccc/lib.h>
30
31 static const char *text[ISCCC_R_NRESULTS] = {
32         "unknown version",                      /* 1 */
33         "syntax error",                         /* 2 */
34         "bad auth",                             /* 3 */
35         "expired",                              /* 4 */
36         "clock skew",                           /* 5 */
37         "duplicate"                             /* 6 */
38 };
39
40 #define ISCCC_RESULT_RESULTSET                  2
41
42 static isc_once_t               once = ISC_ONCE_INIT;
43
44 static void
45 initialize_action(void) {
46         isc_result_t result;
47
48         result = isc_result_register(ISC_RESULTCLASS_ISCCC, ISCCC_R_NRESULTS,
49                                      text, isccc_msgcat,
50                                      ISCCC_RESULT_RESULTSET);
51         if (result != ISC_R_SUCCESS)
52                 UNEXPECTED_ERROR(__FILE__, __LINE__,
53                                  "isc_result_register() failed: %u", result);
54 }
55
56 static void
57 initialize(void) {
58         isccc_lib_initmsgcat();
59         RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
60 }
61
62 const char *
63 isccc_result_totext(isc_result_t result) {
64         initialize();
65
66         return (isc_result_totext(result));
67 }
68
69 void
70 isccc_result_register(void) {
71         initialize();
72 }