aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/krb5_libinit.c
blob: 547be4d30df27fc884e0212698e6cdf167769929 (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
52
53
54
55
56
#include <assert.h>

#if TARGET_OS_MAC
    #include <Kerberos/com_err.h>
#endif

#include "krb5.h"
#include "krb5_err.h"
#include "kv5m_err.h"
#include "asn1_err.h"
#include "kdb5_err.h"

static	int		initialized = 0;

/*
 * Initialize the Kerberos v5 library.
 */

krb5_error_code krb5int_initialize_library (void)
{
	
	if (!initialized) {
#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
	    add_error_table(&et_krb5_error_table);
	    add_error_table(&et_kv5m_error_table);
	    add_error_table(&et_kdb5_error_table);
	    add_error_table(&et_asn1_error_table);
#endif

		initialized = 1;
	}
	
	return 0;
}

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

void krb5int_cleanup_library (void)
{
	assert (initialized);

#if defined(_MSDOS) || defined(_WIN32) || TARGET_OS_MAC
	krb5_stdcc_shutdown();
#endif
	
#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
	remove_error_table(&et_krb5_error_table);
	remove_error_table(&et_kv5m_error_table);
	remove_error_table(&et_kdb5_error_table);
	remove_error_table(&et_asn1_error_table);
#endif
	
	initialized = 0;
}