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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
/*
Authors:
Jakub Hrozek <jhrozek@redhat.com>
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2014 Red Hat
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef IFP_DOMAINS_H_
#define IFP_DOMAINS_H_
#include "responder/ifp/ifp_private.h"
/* org.freedesktop.sssd.infopipe */
struct tevent_req *
ifp_list_domains_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx);
errno_t ifp_list_domains_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
const char ***_paths);
struct tevent_req *
ifp_find_domain_by_name_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx,
const char *name);
errno_t
ifp_find_domain_by_name_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
const char **_path);
/* org.freedesktop.sssd.infopipe.Domains */
errno_t
ifp_dom_get_name(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
errno_t
ifp_dom_get_provider(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
errno_t
ifp_dom_get_primary_servers(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char ***_out);
errno_t
ifp_dom_get_backup_servers(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char ***_out);
errno_t
ifp_dom_get_min_id(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
uint32_t *_out);
errno_t
ifp_dom_get_max_id(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
uint32_t *_out);
errno_t
ifp_dom_get_realm(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
errno_t
ifp_dom_get_forest(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
errno_t
ifp_dom_get_login_format(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
errno_t
ifp_dom_get_fqdn_format(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
errno_t
ifp_dom_get_enumerable(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
bool *_out);
errno_t
ifp_dom_get_use_fqdn(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
bool *_out);
errno_t
ifp_dom_get_subdomain(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
bool *_out);
errno_t
ifp_dom_get_parent_domain(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out);
struct tevent_req *
ifp_domains_domain_is_online_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx);
errno_t
ifp_domains_domain_is_online_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
bool *_is_online);
struct tevent_req *
ifp_domains_domain_list_services_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx);
errno_t
ifp_domains_domain_list_services_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
const char ***_services);
struct tevent_req *
ifp_domains_domain_active_server_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx,
const char *service);
errno_t
ifp_domains_domain_active_server_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
const char **_server);
struct tevent_req *
ifp_domains_domain_list_servers_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx,
const char *service);
errno_t
ifp_domains_domain_list_servers_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
const char ***_servers);
struct tevent_req *
ifp_domains_domain_refresh_access_rules_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct sbus_request *sbus_req,
struct ifp_ctx *ifp_ctx);
errno_t
ifp_domains_domain_refresh_access_rules_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req);
#endif /* IFP_DOMAINS_H_ */
|