s3: Remove unused winbindd_dual_getsidaliases
[mat/samba.git] / source3 / winbindd / winbindd_proto.h
1 /*
2  * Unix SMB/CIFS implementation.
3  * collected prototypes header
4  *
5  * frozen from "make proto" in May 2008
6  *
7  * Copyright (C) Michael Adam 2008
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef _WINBINDD_PROTO_H_
24 #define _WINBINDD_PROTO_H_
25
26
27 /* The following definitions come from auth/token_util.c  */
28
29 bool nt_token_check_sid ( const DOM_SID *sid, const NT_USER_TOKEN *token );
30 bool nt_token_check_domain_rid( NT_USER_TOKEN *token, uint32 rid );
31 NT_USER_TOKEN *get_root_nt_token( void );
32 NTSTATUS add_aliases(const DOM_SID *domain_sid,
33                      struct nt_user_token *token);
34 struct nt_user_token *create_local_nt_token(TALLOC_CTX *mem_ctx,
35                                             const DOM_SID *user_sid,
36                                             bool is_guest,
37                                             int num_groupsids,
38                                             const DOM_SID *groupsids);
39 void debug_nt_user_token(int dbg_class, int dbg_lev, NT_USER_TOKEN *token);
40 void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid,
41                            int n_groups, gid_t *groups);
42
43 /* The following definitions come from smbd/connection.c  */
44
45 bool yield_connection(connection_struct *conn, const char *name);
46 int count_current_connections( const char *sharename, bool clear  );
47 int count_all_current_connections(void);
48 bool claim_connection(connection_struct *conn, const char *name,
49                       uint32 msg_flags);
50 bool register_message_flags(bool doreg, uint32 msg_flags);
51
52 /* The following definitions come from winbindd/winbindd.c  */
53
54 struct event_context *winbind_event_context(void);
55 struct messaging_context *winbind_messaging_context(void);
56 void request_error(struct winbindd_cli_state *state);
57 void request_ok(struct winbindd_cli_state *state);
58 bool winbindd_setup_sig_term_handler(bool parent);
59 bool winbindd_setup_sig_hup_handler(const char *lfile);
60 bool winbindd_use_idmap_cache(void);
61 bool winbindd_use_cache(void);
62 int main(int argc, char **argv, char **envp);
63
64 /* The following definitions come from winbindd/winbindd_ads.c  */
65
66 /* The following definitions come from winbindd/winbindd_rpc.c  */
67
68 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
69                               struct winbindd_domain *domain,
70                               uint32_t num_sids,
71                               const struct dom_sid *sids,
72                               char ***domains,
73                               char ***names,
74                               enum lsa_SidType **types);
75 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
76                                struct winbindd_domain *domain,
77                                uint32_t num_names,
78                                const char **names,
79                                const char ***domains,
80                                struct dom_sid **sids,
81                                enum lsa_SidType **types);
82
83 /* The following definitions come from winbindd/winbindd_async.c  */
84
85 void winbindd_listent_async(TALLOC_CTX *mem_ctx,
86                                struct winbindd_domain *domain,
87                                void (*cont)(void *private_data, bool success,
88                                      fstring dom_name, char* extra_data),
89                                void *private_data, enum ent_type type);
90 enum winbindd_result winbindd_dual_list_users(struct winbindd_domain *domain,
91                                               struct winbindd_cli_state *state);
92 enum winbindd_result winbindd_dual_list_groups(struct winbindd_domain *domain,
93                                                struct winbindd_cli_state *state);
94 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
95                    size_t num_sids, char **result, ssize_t *len);
96 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
97                    DOM_SID **sids, size_t *num_sids);
98
99 /* The following definitions come from winbindd/winbindd_cache.c  */
100
101 void winbindd_check_cache_size(time_t t);
102 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
103 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
104 NTSTATUS wcache_get_creds(struct winbindd_domain *domain, 
105                           TALLOC_CTX *mem_ctx, 
106                           const DOM_SID *sid,
107                           const uint8 **cached_nt_pass,
108                           const uint8 **cached_salt);
109 NTSTATUS wcache_save_creds(struct winbindd_domain *domain, 
110                            TALLOC_CTX *mem_ctx, 
111                            const DOM_SID *sid, 
112                            const uint8 nt_pass[NT_HASH_LEN]);
113 void wcache_invalidate_samlogon(struct winbindd_domain *domain, 
114                                 struct netr_SamInfo3 *info3);
115 bool wcache_invalidate_cache(void);
116 bool init_wcache(void);
117 bool initialize_winbindd_cache(void);
118 void close_winbindd_cache(void);
119 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
120                             const struct dom_sid *sid,
121                             TALLOC_CTX *mem_ctx,
122                             char **domain_name,
123                             char **name,
124                             enum lsa_SidType *type);
125 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
126                                 TALLOC_CTX *mem_ctx,
127                                 const struct dom_sid *group_sid,
128                                 uint32_t *num_names,
129                                 struct dom_sid **sid_mem, char ***names,
130                                 uint32_t **name_types);
131 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
132                        char **domain_name, char **name,
133                        enum lsa_SidType *type);
134 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
135                         const char *domain_name,
136                         const char *name,
137                         DOM_SID *sid,
138                         enum lsa_SidType *type);
139 void cache_name2sid(struct winbindd_domain *domain, 
140                     const char *domain_name, const char *name,
141                     enum lsa_SidType type, const DOM_SID *sid);
142 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
143                             const char *domain_name,
144                             const char *name,
145                             struct dom_sid *sid,
146                             enum lsa_SidType *type);
147 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
148                            TALLOC_CTX *mem_ctx,
149                            const struct dom_sid *user_sid,
150                            struct wbint_userinfo *info);
151 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
152                                    TALLOC_CTX *mem_ctx,
153                                    uint32 num_sids, const DOM_SID *sids,
154                                    uint32 *pnum_aliases, uint32 **paliases);
155 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
156                                   TALLOC_CTX *mem_ctx,
157                                   const struct dom_sid *user_sid,
158                                   uint32_t *pnum_sids,
159                                   struct dom_sid **psids);
160
161 void wcache_flush_cache(void);
162 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
163 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
164 bool set_global_winbindd_state_offline(void);
165 void set_global_winbindd_state_online(void);
166 bool get_global_winbindd_state_offline(void);
167 int winbindd_validate_cache(void);
168 int winbindd_validate_cache_nobackup(void);
169 bool winbindd_cache_validate_and_initialize(void);
170 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
171 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
172 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
173 void wcache_tdc_clear( void );
174 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
175                               const DOM_SID *user_sid,
176                               TALLOC_CTX *ctx,
177                               ADS_STRUCT *ads, LDAPMessage *msg,
178                               const char **homedir, const char **shell,
179                               const char **gecos, gid_t *p_gid);
180 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
181                          time_t last_seq_check);
182 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
183                       uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
184 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
185                       const DATA_BLOB *req, const DATA_BLOB *resp);
186
187 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
188
189 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
190 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
191                                                 struct winbindd_cli_state *state);
192
193 /* The following definitions come from winbindd/winbindd_cm.c  */
194
195 void set_domain_offline(struct winbindd_domain *domain);
196 void set_domain_online_request(struct winbindd_domain *domain);
197 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
198                                         const char *server,
199                                         NTSTATUS result);
200 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
201 void close_conns_after_fork(void);
202 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
203 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
204                         struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
205 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
206                         struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
207 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
208                             TALLOC_CTX *mem_ctx,
209                             struct rpc_pipe_client **cli);
210 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
211                              struct rpc_pipe_client **cli);
212
213 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
214
215 bool ccache_entry_exists(const char *username);
216 bool ccache_entry_identical(const char *username,
217                             uid_t uid,
218                             const char *ccname);
219 void ccache_remove_all_after_fork(void);
220 void ccache_regain_all_now(void);
221 NTSTATUS add_ccache_to_list(const char *princ_name,
222                             const char *ccname,
223                             const char *service,
224                             const char *username,
225                             const char *realm,
226                             uid_t uid,
227                             time_t create_time,
228                             time_t ticket_end,
229                             time_t renew_until,
230                             bool postponed_request);
231 NTSTATUS remove_ccache(const char *username);
232 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
233 NTSTATUS winbindd_add_memory_creds(const char *username,
234                                    uid_t uid,
235                                    const char *pass);
236 NTSTATUS winbindd_delete_memory_creds(const char *username);
237 NTSTATUS winbindd_replace_memory_creds(const char *username,
238                                        const char *pass);
239
240 /* The following definitions come from winbindd/winbindd_creds.c  */
241
242 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
243                             TALLOC_CTX *mem_ctx,
244                             const DOM_SID *sid,
245                             struct netr_SamInfo3 **info3,
246                             const uint8 *cached_nt_pass[NT_HASH_LEN],
247                             const uint8 *cred_salt[NT_HASH_LEN]);
248 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
249                               TALLOC_CTX *mem_ctx, 
250                               const char *user, 
251                               const char *pass, 
252                               struct netr_SamInfo3 *info3,
253                               const DOM_SID *user_sid);
254 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
255                                         TALLOC_CTX *mem_ctx,
256                                         const char *user,
257                                         const char *pass,
258                                         struct netr_SamInfo3 *info3);
259 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
260                                       TALLOC_CTX *mem_ctx,
261                                       const DOM_SID *sid,
262                                       const char *pass);
263 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
264                                        TALLOC_CTX *mem_ctx,
265                                        const char *user,
266                                        const char *pass);
267
268 /* The following definitions come from winbindd/winbindd_domain.c  */
269
270 void setup_domain_child(struct winbindd_domain *domain,
271                         struct winbindd_child *child);
272
273 /* The following definitions come from winbindd/winbindd_dual.c  */
274
275 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
276                                          struct tevent_context *ev,
277                                          struct winbindd_child *child,
278                                          struct winbindd_request *request);
279 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
280                           struct winbindd_response **presponse, int *err);
281 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
282                                           struct tevent_context *ev,
283                                           struct winbindd_domain *domain,
284                                           struct winbindd_request *request);
285 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
286                            struct winbindd_response **presponse, int *err);
287
288 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
289                    struct winbindd_request *request,
290                    struct winbindd_response *response,
291                    void (*continuation)(void *private_data, bool success),
292                    void *private_data);
293 void async_domain_request(TALLOC_CTX *mem_ctx,
294                           struct winbindd_domain *domain,
295                           struct winbindd_request *request,
296                           struct winbindd_response *response,
297                           void (*continuation)(void *private_data_data, bool success),
298                           void *private_data_data);
299 void sendto_child(struct winbindd_cli_state *state,
300                   struct winbindd_child *child);
301 void sendto_domain(struct winbindd_cli_state *state,
302                    struct winbindd_domain *domain);
303 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
304                  const struct winbindd_child_dispatch_table *table,
305                  const char *logprefix,
306                  const char *logname);
307 void winbind_child_died(pid_t pid);
308 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
309 void winbind_msg_debug(struct messaging_context *msg_ctx,
310                          void *private_data,
311                          uint32_t msg_type,
312                          struct server_id server_id,
313                          DATA_BLOB *data);
314 void winbind_msg_offline(struct messaging_context *msg_ctx,
315                          void *private_data,
316                          uint32_t msg_type,
317                          struct server_id server_id,
318                          DATA_BLOB *data);
319 void winbind_msg_online(struct messaging_context *msg_ctx,
320                         void *private_data,
321                         uint32_t msg_type,
322                         struct server_id server_id,
323                         DATA_BLOB *data);
324 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
325                               void *private_data,
326                               uint32_t msg_type,
327                               struct server_id server_id,
328                               DATA_BLOB *data);
329 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
330                                  void *private_data,
331                                  uint32_t msg_type,
332                                  struct server_id server_id,
333                                  DATA_BLOB *data);
334 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
335                                   void *private_data,
336                                   uint32_t msg_type,
337                                   struct server_id server_id,
338                                   DATA_BLOB *data);
339 bool winbindd_reinit_after_fork(const char *logfilename);
340 struct winbindd_domain *wb_child_domain(void);
341
342 /* The following definitions come from winbindd/winbindd_group.c  */
343
344 void winbindd_getgrnam(struct winbindd_cli_state *state);
345 void winbindd_getgrgid(struct winbindd_cli_state *state);
346 void winbindd_setgrent(struct winbindd_cli_state *state);
347 void winbindd_endgrent(struct winbindd_cli_state *state);
348 void winbindd_getgrent(struct winbindd_cli_state *state);
349 void winbindd_list_groups(struct winbindd_cli_state *state);
350 void winbindd_getgroups(struct winbindd_cli_state *state);
351 void winbindd_getusersids(struct winbindd_cli_state *state);
352 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
353 void winbindd_getsidaliases(struct winbindd_cli_state *state);
354 bool get_sam_group_entries(struct getent_state *ent);
355 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
356                 const char *dom_name, const char *gr_name, gid_t unix_gid);
357 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
358                                      TALLOC_CTX *mem_ctx,
359                                      int *num_members, char **result);
360
361
362 /* The following definitions come from winbindd/winbindd_idmap.c  */
363
364 void init_idmap_child(void);
365 struct winbindd_child *idmap_child(void);
366 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
367                              void (*cont)(void *private_data, bool success),
368                              void *private_data);
369 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
370                                             struct winbindd_cli_state *state);
371 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
372                              void (*cont)(void *private_data, bool success),
373                              void *private_data);
374 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
375                                             struct winbindd_cli_state *state);
376 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
377                              void (*cont)(void *private_data, bool success),
378                              void *private_data);
379 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
380                                             struct winbindd_cli_state *state);
381 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
382                          void (*cont)(void *private_data, bool success, void *data, int len),
383                          void *private_data);
384 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
385                                            struct winbindd_cli_state *state);
386
387 /* The following definitions come from winbindd/winbindd_locator.c  */
388
389 void init_locator_child(void);
390 struct winbindd_child *locator_child(void);
391 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
392
393 /* The following definitions come from winbindd/winbindd_misc.c  */
394
395 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
396 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
397                                                       struct winbindd_cli_state *state);
398 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
399 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
400 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
401                                                         struct winbindd_cli_state *state);
402 void winbindd_show_sequence(struct winbindd_cli_state *state);
403 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
404                                                  struct winbindd_cli_state *state);
405 void winbindd_domain_info(struct winbindd_cli_state *state);
406 void winbindd_ping(struct winbindd_cli_state *state);
407 void winbindd_info(struct winbindd_cli_state *state);
408 void winbindd_interface_version(struct winbindd_cli_state *state);
409 void winbindd_domain_name(struct winbindd_cli_state *state);
410 void winbindd_netbios_name(struct winbindd_cli_state *state);
411 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
412
413 /* The following definitions come from winbindd/winbindd_ndr.c  */
414
415 void ndr_print_winbindd_child(struct ndr_print *ndr,
416                               const char *name,
417                               const struct winbindd_child *r);
418 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
419                                 const char *name,
420                                 const struct winbindd_cm_conn *r);
421 void ndr_print_winbindd_methods(struct ndr_print *ndr,
422                                 const char *name,
423                                 const struct winbindd_methods *r);
424 void ndr_print_winbindd_domain(struct ndr_print *ndr,
425                                const char *name,
426                                const struct winbindd_domain *r);
427
428 /* The following definitions come from winbindd/winbindd_pam.c  */
429
430 bool check_request_flags(uint32_t flags);
431 struct winbindd_domain *find_auth_domain(uint8_t flags,
432                                          const char *domain_name);
433 NTSTATUS check_info3_in_group(struct netr_SamInfo3 *info3,
434                               const char *group_sid);
435 NTSTATUS append_auth_data(struct winbindd_cli_state *state,
436                           struct netr_SamInfo3 *info3,
437                           const char *name_domain,
438                           const char *name_user);
439 void winbindd_pam_auth(struct winbindd_cli_state *state);
440 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
441                                             struct winbindd_cli_state *state) ;
442 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
443 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
444                                                  struct winbindd_cli_state *state) ;
445 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
446 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
447                                                  struct winbindd_cli_state *state);
448 void winbindd_pam_logoff(struct winbindd_cli_state *state);
449 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
450                                               struct winbindd_cli_state *state) ;
451 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
452 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
453
454 /* The following definitions come from winbindd/winbindd_passdb.c  */
455
456
457 /* The following definitions come from winbindd/winbindd_reconnect.c  */
458
459
460 /* The following definitions come from winbindd/winbindd_sid.c  */
461
462 void winbindd_lookupsid(struct winbindd_cli_state *state);
463 void winbindd_lookupname(struct winbindd_cli_state *state);
464 void winbindd_lookuprids(struct winbindd_cli_state *state);
465 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
466 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
467 void winbindd_set_mapping(struct winbindd_cli_state *state);
468 void winbindd_remove_mapping(struct winbindd_cli_state *state);
469 void winbindd_set_hwm(struct winbindd_cli_state *state);
470 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
471 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
472 void winbindd_allocate_uid(struct winbindd_cli_state *state);
473 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
474                                                 struct winbindd_cli_state *state);
475 void winbindd_allocate_gid(struct winbindd_cli_state *state);
476 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
477                                                 struct winbindd_cli_state *state);
478
479 /* The following definitions come from winbindd/winbindd_user.c  */
480
481 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
482                                             struct winbindd_cli_state *state);
483 void winbindd_getpwnam(struct winbindd_cli_state *state);
484 void winbindd_getpwuid(struct winbindd_cli_state *state);
485 void winbindd_getpwsid(struct winbindd_cli_state *state);
486 void winbindd_setpwent(struct winbindd_cli_state *state);
487 void winbindd_endpwent(struct winbindd_cli_state *state);
488 void winbindd_getpwent(struct winbindd_cli_state *state);
489 void winbindd_list_users(struct winbindd_cli_state *state);
490
491 /* The following definitions come from winbindd/winbindd_util.c  */
492
493 struct winbindd_domain *domain_list(void);
494 void free_domain_list(void);
495 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
496                             struct timeval now, void *private_data);
497 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
498                                                    struct winbindd_cli_state *state);
499 bool init_domain_list(void);
500 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
501 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
502 struct winbindd_domain *find_domain_from_name(const char *domain_name);
503 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
504 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
505 struct winbindd_domain *find_our_domain(void);
506 struct winbindd_domain *find_root_domain(void);
507 struct winbindd_domain *find_builtin_domain(void);
508 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
509 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
510 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
511                                  enum winbindd_cmd orig_cmd,
512                                  struct winbindd_domain *domain, 
513                                  const char *domain_name,
514                                  const char *name, DOM_SID *sid, 
515                                  enum lsa_SidType *type);
516 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
517                                  struct winbindd_domain *domain,
518                                  DOM_SID *sid,
519                                  char **dom_name,
520                                  char **name,
521                                  enum lsa_SidType *type);
522 void free_getent_state(struct getent_state *state);
523 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
524 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
525                               char **domain, char **user);
526 void parse_add_domuser(void *buf, char *domuser, int *len);
527 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
528 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
529 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
530                                   const char *domain,
531                                   const char *user,
532                                   bool can_assume);
533 const char *get_winbind_pipe_dir(void) ;
534 char *get_winbind_priv_pipe_dir(void) ;
535 int open_winbindd_socket(void);
536 int open_winbindd_priv_socket(void);
537 struct winbindd_cli_state *winbindd_client_list(void);
538 void winbindd_add_client(struct winbindd_cli_state *cli);
539 void winbindd_remove_client(struct winbindd_cli_state *cli);
540 void winbindd_kill_all_clients(void);
541 int winbindd_num_clients(void);
542 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
543                                   TALLOC_CTX *mem_ctx,
544                                   const DOM_SID *user_sid,
545                                   uint32 *p_num_groups, DOM_SID **user_sids);
546
547 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
548                              struct winbindd_domain *domain,
549                              const char *name,
550                              char **normalized);
551 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
552                               char *name,
553                               char **normalized);
554
555 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
556                                    struct winbindd_domain *domain,
557                                    const char *name, char **alias);
558 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
559                                    struct winbindd_domain *domain,
560                                    const char *alias, char **name);
561
562 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
563 bool winbindd_internal_child(struct winbindd_child *child);
564 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
565 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
566 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
567 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
568 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
569
570 /* The following definitions come from winbindd/winbindd_wins.c  */
571
572 void winbindd_wins_byip(struct winbindd_cli_state *state);
573 void winbindd_wins_byname(struct winbindd_cli_state *state);
574
575 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
576                                 struct winbindd_cli_state *cli,
577                                 struct winbindd_request *request);
578 NTSTATUS wb_ping_recv(struct tevent_req *req,
579                       struct winbindd_response *resp);
580
581 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
582                                         struct winbindd_cli_state *state);
583
584 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
585                                             struct winbindd_domain *domain,
586                                             struct winbindd_child *child);
587 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
588                                           struct winbindd_cli_state *state);
589
590 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
591                                      struct tevent_context *ev,
592                                      const struct dom_sid *sid);
593 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
594                            enum lsa_SidType *type, const char **domain,
595                            const char **name);
596
597 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
598                                            struct tevent_context *ev,
599                                            struct winbindd_cli_state *cli,
600                                            struct winbindd_request *request);
601 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
602                                  struct winbindd_response *response);
603
604 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
605                                       struct tevent_context *ev,
606                                       const char *dom_name, const char *name,
607                                       uint32_t flags);
608 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
609                             enum lsa_SidType *type);
610
611 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
612                                             struct tevent_context *ev,
613                                             struct winbindd_cli_state *cli,
614                                             struct winbindd_request *request);
615 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
616                                   struct winbindd_response *response);
617
618 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
619                                    struct tevent_context *ev,
620                                    const struct dom_sid *sid);
621 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
622
623 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
624                                             struct tevent_context *ev,
625                                             struct winbindd_cli_state *cli,
626                                             struct winbindd_request *request);
627 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
628                                   struct winbindd_response *response);
629
630 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
631                                    struct tevent_context *ev,
632                                    const struct dom_sid *sid);
633 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
634
635 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
636                                             struct tevent_context *ev,
637                                             struct winbindd_cli_state *cli,
638                                             struct winbindd_request *request);
639 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
640                                   struct winbindd_response *response);
641
642 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
643                                    struct tevent_context *ev,
644                                    uid_t uid);
645 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
646
647 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
648                                             struct tevent_context *ev,
649                                             struct winbindd_cli_state *cli,
650                                             struct winbindd_request *request);
651 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
652                                   struct winbindd_response *response);
653
654 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
655                                    struct tevent_context *ev,
656                                    gid_t gid);
657 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
658
659 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
660                                             struct tevent_context *ev,
661                                             struct winbindd_cli_state *cli,
662                                             struct winbindd_request *request);
663 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
664                                   struct winbindd_response *response);
665
666 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
667                                               struct tevent_context *ev,
668                                               struct winbindd_cli_state *cli,
669                                               struct winbindd_request *request);
670 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
671                                     struct winbindd_response *response);
672
673 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
674                                               struct tevent_context *ev,
675                                               struct winbindd_cli_state *cli,
676                                               struct winbindd_request *request);
677 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
678                                     struct winbindd_response *response);
679
680 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
681                                      struct tevent_context *ev,
682                                      const struct dom_sid *user_sid);
683 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
684                            struct wbint_userinfo **pinfo);
685
686 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
687                                     struct tevent_context *ev,
688                                     const struct dom_sid *user_sid,
689                                     struct winbindd_pw *pw);
690 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
691
692 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
693                                           struct tevent_context *ev,
694                                           struct winbindd_cli_state *cli,
695                                           struct winbindd_request *request);
696 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
697                                 struct winbindd_response *response);
698
699 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
700                                           struct tevent_context *ev,
701                                           struct winbindd_cli_state *cli,
702                                           struct winbindd_request *request);
703 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
704                                 struct winbindd_response *response);
705
706 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
707                                           struct tevent_context *ev,
708                                           struct winbindd_cli_state *cli,
709                                           struct winbindd_request *request);
710 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
711                                 struct winbindd_response *response);
712 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
713                                              struct tevent_context *ev,
714                                              struct winbindd_domain *domain,
715                                              int num_sids,
716                                              const struct dom_sid *sids);
717 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
718                                    uint32_t *num_aliases, uint32_t **aliases);
719 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
720                                                struct tevent_context *ev,
721                                                struct winbindd_cli_state *cli,
722                                                struct winbindd_request *request);
723 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
724                                      struct winbindd_response *response);
725 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
726                                             struct tevent_context *ev,
727                                             struct winbindd_domain *domain,
728                                             const struct dom_sid *sid);
729 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
730                                   int *num_sids, struct dom_sid **sids);
731
732 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
733                                                   struct tevent_context *ev,
734                                                   struct winbindd_cli_state *cli,
735                                                   struct winbindd_request *request);
736 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
737                                         struct winbindd_response *response);
738 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
739                                     struct tevent_context *ev,
740                                     const struct dom_sid *sid);
741 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
742                           int *num_sids, struct dom_sid **sids);
743 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
744                                            struct tevent_context *ev,
745                                            struct winbindd_cli_state *cli,
746                                            struct winbindd_request *request);
747 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
748                                  struct winbindd_response *response);
749
750 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
751                                   struct tevent_context *ev,
752                                   struct winbindd_domain *domain);
753 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
754
755 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
756                                    struct tevent_context *ev);
757 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
758                          int *num_domains, struct winbindd_domain ***domains,
759                          NTSTATUS **stati, uint32_t **seqnums);
760
761 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
762                                                struct tevent_context *ev,
763                                                struct winbindd_cli_state *cli,
764                                                struct winbindd_request *request);
765 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
766                                      struct winbindd_response *response);
767
768 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
769                                          struct tevent_context *ev,
770                                          const struct dom_sid *sid,
771                                          enum lsa_SidType type,
772                                          int max_depth);
773 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
774                                struct talloc_dict **members);
775
776 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
777                                     struct tevent_context *ev,
778                                     const struct dom_sid *group_sid,
779                                     int max_nesting);
780 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
781                           const char **domname, const char **name, gid_t *gid,
782                           struct talloc_dict **members);
783
784 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
785                                           struct tevent_context *ev,
786                                           struct winbindd_cli_state *cli,
787                                           struct winbindd_request *request);
788 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
789                                 struct winbindd_response *response);
790
791 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
792                                           struct tevent_context *ev,
793                                           struct winbindd_cli_state *cli,
794                                           struct winbindd_request *request);
795 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
796                                 struct winbindd_response *response);
797
798 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
799                                              struct tevent_context *ev,
800                                              struct winbindd_cli_state *cli,
801                                              struct winbindd_request *request);
802 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
803                                    struct winbindd_response *response);
804
805 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
806                                             struct tevent_context *ev,
807                                             struct winbindd_cli_state *cli,
808                                             struct winbindd_request *request);
809 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
810                                   struct winbindd_response *response);
811
812 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
813                                            struct tevent_context *ev,
814                                            struct winbindd_domain *domain);
815 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
816                                  int *num_users,
817                                  struct wbint_userinfo **users);
818
819 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
820                                       struct tevent_context *ev,
821                                       struct wbint_userinfo *info,
822                                       struct winbindd_pw *pw);
823 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
824
825 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
826                                       struct tevent_context *ev,
827                                       struct getpwent_state *gstate,
828                                       struct winbindd_pw *pw);
829 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
830
831 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
832                                           struct tevent_context *ev,
833                                           struct winbindd_cli_state *cli,
834                                           struct winbindd_request *request);
835 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
836                                 struct winbindd_response *presp);
837
838 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
839                                           struct tevent_context *ev,
840                                           struct winbindd_cli_state *cli,
841                                           struct winbindd_request *request);
842 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
843                                 struct winbindd_response *response);
844
845 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
846                                           struct tevent_context *ev,
847                                           struct winbindd_cli_state *cli,
848                                           struct winbindd_request *request);
849 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
850                                 struct winbindd_response *response);
851
852 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
853                                              struct tevent_context *ev,
854                                              struct winbindd_cli_state *cli,
855                                              struct winbindd_request *request);
856 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
857                                    struct winbindd_response *response);
858
859 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
860                                        struct tevent_context *ev,
861                                        const char *domain_name,
862                                        const struct GUID *domain_guid,
863                                        const char *site_name,
864                                        uint32_t flags);
865 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
866                              struct netr_DsRGetDCNameInfo **pdcinfo);
867
868 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
869                                            struct tevent_context *ev,
870                                            struct winbindd_cli_state *cli,
871                                            struct winbindd_request *request);
872 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
873                                  struct winbindd_response *response);
874
875 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
876                                       struct tevent_context *ev,
877                                       int max_nesting,
878                                       struct getgrent_state *gstate,
879                                       struct winbindd_gr *gr);
880 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
881                             struct talloc_dict **members);
882
883 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
884                                           struct tevent_context *ev,
885                                           struct winbindd_cli_state *cli,
886                                           struct winbindd_request *request);
887 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
888                                 struct winbindd_response *response);
889 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
890                                           struct tevent_context *ev,
891                                           struct winbindd_cli_state *cli,
892                                           struct winbindd_request *request);
893 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
894                                 struct winbindd_response *response);
895 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
896                                           struct tevent_context *ev,
897                                           struct winbindd_cli_state *cli,
898                                           struct winbindd_request *request);
899 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
900                                 struct winbindd_response *response);
901
902 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
903                                             struct tevent_context *ev,
904                                             struct winbindd_cli_state *cli,
905                                             struct winbindd_request *request);
906 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
907                                   struct winbindd_response *response);
908
909 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
910                                              struct tevent_context *ev,
911                                              struct winbindd_cli_state *cli,
912                                              struct winbindd_request *request);
913 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
914                                    struct winbindd_response *response);
915
916 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
917                                                     struct tevent_context *ev,
918                                                     struct winbindd_cli_state *cli,
919                                                     struct winbindd_request *request);
920 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
921                                           struct winbindd_response *presp);
922
923 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
924                                                      struct tevent_context *ev,
925                                                      struct winbindd_cli_state *cli,
926                                                      struct winbindd_request *request);
927 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
928                                            struct winbindd_response *presp);
929
930 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
931                                              struct tevent_context *ev,
932                                              struct winbindd_cli_state *cli,
933                                              struct winbindd_request *request);
934 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
935                                    struct winbindd_response *response);
936
937 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
938                                                 struct tevent_context *ev,
939                                                 struct winbindd_cli_state *cli,
940                                                 struct winbindd_request *request);
941 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
942                                       struct winbindd_response *response);
943
944 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
945                                          struct tevent_context *ev,
946                                          struct winbindd_cli_state *cli,
947                                          struct winbindd_request *request);
948 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
949                                struct winbindd_response *response);
950
951 #endif /*  _WINBINDD_PROTO_H_  */