summaryrefslogtreecommitdiffstats
path: root/src/lib/gssapi/gss_libinit.c
blob: c8fbf22f50e3f430de888feb18d64170e52f953f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <assert.h>

#if TARGET_OS_MAC
/* Mac OS X com_err files do not include com_err for you */
#include <Kerberos/com_err.h>
#endif

#include "gssapi_err_generic.h"
#include "gssapi_err_krb5.h"
#include "gssapiP_krb5.h"

#include "gss_libinit.h"

static	int		initialized = 0;

/*
 * Initialize the GSSAPI library.
 */

OM_uint32 gssint_initialize_library (void)
{
	
	if (!initialized) {
#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
	    add_error_table(&et_k5g_error_table);
	    add_error_table(&et_ggss_error_table);
#endif

		initialized = 1;
	}
	
	return 0;
}

/*
 * Clean up the Kerberos v5 lirbary state
 */

void gssint_cleanup_library (void)
{
	OM_uint32 min_stat;

	assert (initialized);
	
	(void) kg_release_defcred (&min_stat);
	
	remove_error_table(&et_k5g_error_table);
	remove_error_table(&et_ggss_error_table);
	
	initialized = 0;
}