forked from heimdal/MKShim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdummy-cc.c
81 lines (57 loc) · 2.82 KB
/
dummy-cc.c
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "dummy.h"
#include <mit-CredentialsCache2.h>
dummy(cc_close, cc_int32,
(apiCB *in_context, ccache_p **ioCCache), CC_NOT_SUPP);
dummy(cc_create, cc_int32,
(apiCB *in_context, const char *in_name, const char *in_principal,
cc_int32 in_version, cc_uint32 in_flags, ccache_p **out_ccache), CC_NOT_SUPP);
dummy(cc_destroy, cc_int32,
(apiCB *in_context, ccache_p **io_ccache), CC_NOT_SUPP);
dummy(cc_free_NC_info, cc_int32,
(apiCB *in_context, infoNC ***io_info), CC_NOT_SUPP);
dummy(cc_free_creds, cc_int32,
(apiCB *in_context, cred_union **io_cred_union), CC_NOT_SUPP);
dummy(cc_free_name, cc_int32,
(apiCB *in_context, char **io_name), CC_NOT_SUPP);
dummy(cc_free_principal, cc_int32,
(apiCB *in_context, char **io_principal), CC_NOT_SUPP);
dummy(cc_get_NC_info, cc_int32,
(apiCB *in_context, infoNC ***out_info), CC_NOT_SUPP);
dummy(cc_get_change_time, cc_int32,
(apiCB *in_context, cc_time_t *out_change_time) ,CC_NOT_SUPP);
dummy(cc_get_cred_version, cc_int32,
(apiCB *in_context, ccache_p *in_ccache, cc_int32 *out_version), CC_NOT_SUPP);
dummy(cc_get_name, cc_int32,
(apiCB *in_context, ccache_p *in_ccache, char **out_name), CC_NOT_SUPP);
dummy(cc_get_principal, cc_int32,
(apiCB *in_context, ccache_p *in_ccache, char **out_principal), CC_NOT_SUPP);
dummy(cc_open, cc_int32,
(apiCB *in_context, const char *in_name, cc_int32 in_version,
cc_uint32 in_flags, ccache_p **out_ccache), CC_NOT_SUPP);
dummy(cc_remove_cred, cc_int32,
(apiCB *in_context, ccache_p *in_ccache, cred_union in_credentials), CC_NOT_SUPP);
dummy(cc_seq_fetch_NCs_begin, cc_int32,
(apiCB *in_context, ccache_cit **out_nc_iterator), CC_NOT_SUPP);
dummy(cc_seq_fetch_NCs_end, cc_int32,
(apiCB *in_context, ccache_cit **io_nc_iterator), CC_NOT_SUPP);
dummy(cc_seq_fetch_NCs_next, cc_int32,
(apiCB *in_context, ccache_p **out_ccache, ccache_cit *in_nc_iterator), CC_NOT_SUPP);
dummy(cc_seq_fetch_creds_begin, cc_int32,
(apiCB *in_context, const ccache_p *in_ccache, ccache_cit **out_ccache_iterator),
CC_NOT_SUPP);
dummy(cc_seq_fetch_creds_end, cc_int32,
(apiCB *in_context, ccache_cit **io_ccache_iterator), CC_NOT_SUPP);
dummy(cc_seq_fetch_creds_next, cc_int32,
(apiCB *in_context, cred_union **out_cred_union, ccache_cit *in_ccache_iterator),
CC_NOT_SUPP);
dummy(cc_set_principal, cc_int32,
(apiCB *in_context, ccache_p *in_ccache, cc_int32 in_version, char *in_principal),
CC_NOT_SUPP);
dummy(cc_shutdown, cc_int32,
(apiCB **io_context), CC_NOT_SUPP);
dummy(cc_store, cc_int32,
(apiCB *in_context, ccache_p *in_ccache, cred_union in_credentials),
CC_NOT_SUPP);
dummy(cc_lock_request, cc_int32,
(apiCB *in_context, const ccache_p *in_ccache, const cc_int32 in_lock_type),
CC_NOT_SUPP);