]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/bind9/lib/isccc/lib.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / bind9 / lib / isccc / lib.c
1 /*
2  * Portions Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001  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: lib.c,v 1.4.18.2 2005/04/29 00:17:12 marka Exp $ */
20
21 /*! \file */
22
23 #include <config.h>
24
25 #include <stddef.h>
26
27 #include <isc/once.h>
28 #include <isc/msgcat.h>
29 #include <isc/util.h>
30
31 #include <isccc/lib.h>
32
33 /***
34  *** Globals
35  ***/
36
37 LIBISCCC_EXTERNAL_DATA isc_msgcat_t *           isccc_msgcat = NULL;
38
39
40 /***
41  *** Private
42  ***/
43
44 static isc_once_t               msgcat_once = ISC_ONCE_INIT;
45
46
47 /***
48  *** Functions
49  ***/
50
51 static void
52 open_msgcat(void) {
53         isc_msgcat_open("libisccc.cat", &isccc_msgcat);
54 }
55
56 void
57 isccc_lib_initmsgcat(void) {
58
59         /*
60          * Initialize the DNS library's message catalog, isccc_msgcat, if it
61          * has not already been initialized.
62          */
63
64         RUNTIME_CHECK(isc_once_do(&msgcat_once, open_msgcat) == ISC_R_SUCCESS);
65 }