libsmb: Change cli_posix_stat_send to take a pointer to sbuf
[Samba.git] / source3 / libsmb / proto.h
blob18d247fbe7eca70a7f02a25db907d98c15313022
1 /*
2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Bartlett 2001-2003
5 Copyright (C) Andrew Tridgell 1994-1998,2000-2001
6 Copyright (C) Gerald (Jerry) Carter 2004
7 Copyright (C) Jelmer Vernooij 2003
8 Copyright (C) Jeremy Allison 2001-2009,2011
9 Copyright (C) Stefan Metzmacher 2003,2009
10 Copyright (C) Volker Lendecke 2011
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #ifndef _LIBSMB_PROTO_H_
27 #define _LIBSMB_PROTO_H_
29 #include "auth_info.h"
31 struct smb_trans_enc_state;
32 struct cli_credentials;
33 struct cli_state;
34 struct file_info;
35 struct print_job_info;
37 /* The following definitions come from libsmb/cliconnect.c */
39 struct cli_credentials *cli_session_creds_init(TALLOC_CTX *mem_ctx,
40 const char *username,
41 const char *domain,
42 const char *realm,
43 const char *password,
44 bool use_kerberos,
45 bool fallback_after_kerberos,
46 bool use_ccache,
47 bool password_is_nt_hash);
48 NTSTATUS cli_session_creds_prepare_krb5(struct cli_state *cli,
49 struct cli_credentials *creds);
50 struct tevent_req *cli_session_setup_creds_send(TALLOC_CTX *mem_ctx,
51 struct tevent_context *ev,
52 struct cli_state *cli,
53 struct cli_credentials *creds);
54 NTSTATUS cli_session_setup_creds_recv(struct tevent_req *req);
55 NTSTATUS cli_session_setup_creds(struct cli_state *cli,
56 struct cli_credentials *creds);
57 NTSTATUS cli_session_setup_anon(struct cli_state *cli);
58 struct tevent_req *cli_session_setup_guest_create(TALLOC_CTX *mem_ctx,
59 struct tevent_context *ev,
60 struct cli_state *cli,
61 struct tevent_req **psmbreq);
62 struct tevent_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
63 struct tevent_context *ev,
64 struct cli_state *cli);
65 NTSTATUS cli_session_setup_guest_recv(struct tevent_req *req);
66 NTSTATUS cli_ulogoff(struct cli_state *cli);
67 struct tevent_req *cli_tcon_andx_create(TALLOC_CTX *mem_ctx,
68 struct tevent_context *ev,
69 struct cli_state *cli,
70 const char *share, const char *dev,
71 const char *pass, int passlen,
72 struct tevent_req **psmbreq);
73 struct tevent_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
74 struct tevent_context *ev,
75 struct cli_state *cli,
76 const char *share, const char *dev,
77 const char *pass, int passlen);
78 NTSTATUS cli_tcon_andx_recv(struct tevent_req *req);
79 NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
80 const char *dev, const char *pass, int passlen);
81 NTSTATUS cli_tree_connect_creds(struct cli_state *cli,
82 const char *share, const char *dev,
83 struct cli_credentials *creds);
84 NTSTATUS cli_tree_connect(struct cli_state *cli, const char *share,
85 const char *dev, const char *pass);
86 NTSTATUS cli_tdis(struct cli_state *cli);
87 NTSTATUS cli_connect_nb(const char *host, const struct sockaddr_storage *dest_ss,
88 uint16_t port, int name_type, const char *myname,
89 int signing_state, int flags, struct cli_state **pcli);
90 NTSTATUS cli_start_connection(struct cli_state **output_cli,
91 const char *my_name,
92 const char *dest_host,
93 const struct sockaddr_storage *dest_ss, int port,
94 int signing_state, int flags);
95 NTSTATUS cli_smb1_setup_encryption(struct cli_state *cli,
96 struct cli_credentials *creds);
97 struct tevent_req *cli_full_connection_creds_send(
98 TALLOC_CTX *mem_ctx, struct tevent_context *ev,
99 const char *my_name, const char *dest_host,
100 const struct sockaddr_storage *dest_ss, int port,
101 const char *service, const char *service_type,
102 struct cli_credentials *creds,
103 int flags, int signing_state);
104 NTSTATUS cli_full_connection_creds_recv(struct tevent_req *req,
105 struct cli_state **output_cli);
106 NTSTATUS cli_full_connection_creds(struct cli_state **output_cli,
107 const char *my_name,
108 const char *dest_host,
109 const struct sockaddr_storage *dest_ss, int port,
110 const char *service, const char *service_type,
111 struct cli_credentials *creds,
112 int flags,
113 int signing_state);
114 NTSTATUS cli_full_connection(struct cli_state **output_cli,
115 const char *my_name,
116 const char *dest_host,
117 const struct sockaddr_storage *dest_ss, int port,
118 const char *service, const char *service_type,
119 const char *user, const char *domain,
120 const char *password, int flags,
121 int signing_state);
122 NTSTATUS cli_raw_tcon(struct cli_state *cli,
123 const char *service, const char *pass, const char *dev,
124 uint16_t *max_xmit, uint16_t *tid);
125 struct cli_state *get_ipc_connect(char *server,
126 struct sockaddr_storage *server_ss,
127 const struct user_auth_info *user_info);
128 struct cli_state *get_ipc_connect_master_ip(TALLOC_CTX *ctx,
129 struct sockaddr_storage *mb_ip,
130 const struct user_auth_info *user_info,
131 char **pp_workgroup_out);
132 struct cli_state *get_ipc_connect_master_ip_bcast(TALLOC_CTX *ctx,
133 const struct user_auth_info *user_info,
134 char **pp_workgroup_out);
136 /* The following definitions come from libsmb/clidfs.c */
138 NTSTATUS cli_cm_force_encryption_creds(struct cli_state *c,
139 struct cli_credentials *creds,
140 const char *sharename);
141 NTSTATUS cli_cm_force_encryption(struct cli_state *c,
142 const char *username,
143 const char *password,
144 const char *domain,
145 const char *sharename);
146 NTSTATUS cli_cm_open(TALLOC_CTX *ctx,
147 struct cli_state *referring_cli,
148 const char *server,
149 const char *share,
150 const struct user_auth_info *auth_info,
151 bool force_encrypt,
152 int max_protocol,
153 int port,
154 int name_type,
155 struct cli_state **pcli);
156 void cli_cm_display(struct cli_state *c);
157 struct client_dfs_referral;
158 NTSTATUS cli_dfs_get_referral_ex(TALLOC_CTX *ctx,
159 struct cli_state *cli,
160 const char *path,
161 uint16_t max_referral_level,
162 struct client_dfs_referral **refs,
163 size_t *num_refs,
164 size_t *consumed);
165 NTSTATUS cli_dfs_get_referral(TALLOC_CTX *ctx,
166 struct cli_state *cli,
167 const char *path,
168 struct client_dfs_referral **refs,
169 size_t *num_refs,
170 size_t *consumed);
171 NTSTATUS cli_resolve_path(TALLOC_CTX *ctx,
172 const char *mountpt,
173 const struct user_auth_info *dfs_auth_info,
174 struct cli_state *rootcli,
175 const char *path,
176 struct cli_state **targetcli,
177 char **pp_targetpath);
179 bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
180 struct cli_state *cli,
181 const char *sharename,
182 char **pp_newserver,
183 char **pp_newshare,
184 bool force_encrypt,
185 struct cli_credentials *creds);
187 /* The following definitions come from libsmb/clientgen.c */
189 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero);
190 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout);
191 bool cli_set_backup_intent(struct cli_state *cli, bool flag);
192 extern struct GUID cli_state_client_guid;
193 struct cli_state *cli_state_create(TALLOC_CTX *mem_ctx,
194 int fd,
195 const char *remote_name,
196 int signing_state,
197 int flags);
198 void cli_nt_pipes_close(struct cli_state *cli);
199 void cli_shutdown(struct cli_state *cli);
200 uint16_t cli_state_get_vc_num(struct cli_state *cli);
201 uint32_t cli_setpid(struct cli_state *cli, uint32_t pid);
202 uint32_t cli_getpid(struct cli_state *cli);
203 bool cli_state_is_encryption_on(struct cli_state *cli);
204 bool cli_state_has_tcon(struct cli_state *cli);
205 uint32_t cli_state_get_tid(struct cli_state *cli);
206 uint32_t cli_state_set_tid(struct cli_state *cli, uint32_t tid);
207 struct smbXcli_tcon;
208 struct smbXcli_tcon *cli_state_save_tcon(struct cli_state *cli);
209 void cli_state_restore_tcon(struct cli_state *cli, struct smbXcli_tcon *tcon);
210 uint16_t cli_state_get_uid(struct cli_state *cli);
211 uint16_t cli_state_set_uid(struct cli_state *cli, uint16_t uid);
212 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive);
213 uint32_t cli_state_available_size(struct cli_state *cli, uint32_t ofs);
214 time_t cli_state_server_time(struct cli_state *cli);
215 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
216 struct cli_state *cli, uint16_t num_echos,
217 DATA_BLOB data);
218 NTSTATUS cli_echo_recv(struct tevent_req *req);
219 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data);
220 bool is_andx_req(uint8_t cmd);
221 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
222 uint8_t smb_command, uint8_t additional_flags,
223 uint8_t wct, uint16_t *vwv,
224 uint32_t num_bytes, const uint8_t *bytes,
225 struct tevent_req **result_parent,
226 uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
227 uint32_t *pnum_bytes, uint8_t **pbytes);
229 /* The following definitions come from libsmb/clierror.c */
231 const char *cli_errstr(struct cli_state *cli);
232 NTSTATUS cli_nt_error(struct cli_state *cli);
233 void cli_dos_error(struct cli_state *cli, uint8_t *eclass, uint32_t *ecode);
234 int cli_errno(struct cli_state *cli);
235 bool cli_is_error(struct cli_state *cli);
236 bool cli_is_nt_error(struct cli_state *cli);
237 bool cli_is_dos_error(struct cli_state *cli);
238 bool cli_state_is_connected(struct cli_state *cli);
240 /* The following definitions come from libsmb/clifile.c */
242 struct tevent_req *cli_setpathinfo_send(TALLOC_CTX *mem_ctx,
243 struct tevent_context *ev,
244 struct cli_state *cli,
245 uint16_t level,
246 const char *path,
247 uint8_t *data,
248 size_t data_len);
249 NTSTATUS cli_setpathinfo_recv(struct tevent_req *req);
250 NTSTATUS cli_setpathinfo(struct cli_state *cli,
251 uint16_t level,
252 const char *path,
253 uint8_t *data,
254 size_t data_len);
256 struct tevent_req *cli_posix_symlink_send(TALLOC_CTX *mem_ctx,
257 struct tevent_context *ev,
258 struct cli_state *cli,
259 const char *oldname,
260 const char *newname);
261 NTSTATUS cli_posix_symlink_recv(struct tevent_req *req);
262 NTSTATUS cli_posix_symlink(struct cli_state *cli,
263 const char *oldname,
264 const char *newname);
265 struct tevent_req *cli_posix_readlink_send(TALLOC_CTX *mem_ctx,
266 struct tevent_context *ev,
267 struct cli_state *cli,
268 const char *fname,
269 size_t len);
270 NTSTATUS cli_posix_readlink_recv(struct tevent_req *req, struct cli_state *cli,
271 char *retpath, size_t len);
272 NTSTATUS cli_posix_readlink(struct cli_state *cli, const char *fname,
273 char *linkpath, size_t len);
274 struct tevent_req *cli_posix_hardlink_send(TALLOC_CTX *mem_ctx,
275 struct tevent_context *ev,
276 struct cli_state *cli,
277 const char *oldname,
278 const char *newname);
279 NTSTATUS cli_posix_hardlink_recv(struct tevent_req *req);
280 NTSTATUS cli_posix_hardlink(struct cli_state *cli,
281 const char *oldname,
282 const char *newname);
283 uint32_t unix_perms_to_wire(mode_t perms);
284 mode_t wire_perms_to_unix(uint32_t perms);
285 struct tevent_req *cli_posix_getacl_send(TALLOC_CTX *mem_ctx,
286 struct tevent_context *ev,
287 struct cli_state *cli,
288 const char *fname);
289 NTSTATUS cli_posix_getacl_recv(struct tevent_req *req,
290 TALLOC_CTX *mem_ctx,
291 size_t *prb_size,
292 char **retbuf);
293 NTSTATUS cli_posix_getacl(struct cli_state *cli,
294 const char *fname,
295 TALLOC_CTX *mem_ctx,
296 size_t *prb_size,
297 char **retbuf);
298 struct tevent_req *cli_posix_setacl_send(TALLOC_CTX *mem_ctx,
299 struct tevent_context *ev,
300 struct cli_state *cli,
301 const char *fname,
302 const void *acl_buf,
303 size_t acl_buf_size);
304 NTSTATUS cli_posix_setacl_recv(struct tevent_req *req);
305 NTSTATUS cli_posix_setacl(struct cli_state *cli,
306 const char *fname,
307 const void *acl_buf,
308 size_t acl_buf_size);
309 struct tevent_req *cli_posix_stat_send(TALLOC_CTX *mem_ctx,
310 struct tevent_context *ev,
311 struct cli_state *cli,
312 const char *fname,
313 SMB_STRUCT_STAT *sbuf);
314 NTSTATUS cli_posix_stat_recv(struct tevent_req *req);
315 NTSTATUS cli_posix_stat(struct cli_state *cli,
316 const char *fname,
317 SMB_STRUCT_STAT *sbuf);
318 struct tevent_req *cli_posix_chmod_send(TALLOC_CTX *mem_ctx,
319 struct tevent_context *ev,
320 struct cli_state *cli,
321 const char *fname,
322 mode_t mode);
323 NTSTATUS cli_posix_chmod_recv(struct tevent_req *req);
324 NTSTATUS cli_posix_chmod(struct cli_state *cli, const char *fname, mode_t mode);
325 struct tevent_req *cli_posix_chown_send(TALLOC_CTX *mem_ctx,
326 struct tevent_context *ev,
327 struct cli_state *cli,
328 const char *fname,
329 uid_t uid,
330 gid_t gid);
331 NTSTATUS cli_posix_chown_recv(struct tevent_req *req);
332 NTSTATUS cli_posix_chown(struct cli_state *cli,
333 const char *fname,
334 uid_t uid,
335 gid_t gid);
336 struct tevent_req *cli_rename_send(TALLOC_CTX *mem_ctx,
337 struct tevent_context *ev,
338 struct cli_state *cli,
339 const char *fname_src,
340 const char *fname_dst,
341 bool replace);
342 NTSTATUS cli_rename_recv(struct tevent_req *req);
343 NTSTATUS cli_rename(struct cli_state *cli,
344 const char *fname_src,
345 const char *fname_dst,
346 bool replace);
347 struct tevent_req *cli_ntrename_send(TALLOC_CTX *mem_ctx,
348 struct tevent_context *ev,
349 struct cli_state *cli,
350 const char *fname_src,
351 const char *fname_dst);
352 NTSTATUS cli_ntrename_recv(struct tevent_req *req);
353 NTSTATUS cli_ntrename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
355 struct tevent_req *cli_nt_hardlink_send(TALLOC_CTX *mem_ctx,
356 struct tevent_context *ev,
357 struct cli_state *cli,
358 const char *fname_src,
359 const char *fname_dst);
360 NTSTATUS cli_nt_hardlink_recv(struct tevent_req *req);
361 NTSTATUS cli_nt_hardlink(struct cli_state *cli, const char *fname_src, const char *fname_dst);
363 struct tevent_req *cli_unlink_send(TALLOC_CTX *mem_ctx,
364 struct tevent_context *ev,
365 struct cli_state *cli,
366 const char *fname,
367 uint16_t mayhave_attrs);
368 NTSTATUS cli_unlink_recv(struct tevent_req *req);
369 NTSTATUS cli_unlink(struct cli_state *cli, const char *fname, uint16_t mayhave_attrs);
371 struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
372 struct tevent_context *ev,
373 struct cli_state *cli,
374 const char *dname);
375 NTSTATUS cli_mkdir_recv(struct tevent_req *req);
376 NTSTATUS cli_mkdir(struct cli_state *cli, const char *dname);
377 struct tevent_req *cli_rmdir_send(TALLOC_CTX *mem_ctx,
378 struct tevent_context *ev,
379 struct cli_state *cli,
380 const char *dname);
381 NTSTATUS cli_rmdir_recv(struct tevent_req *req);
382 NTSTATUS cli_rmdir(struct cli_state *cli, const char *dname);
383 struct tevent_req *cli_nt_delete_on_close_send(TALLOC_CTX *mem_ctx,
384 struct tevent_context *ev,
385 struct cli_state *cli,
386 uint16_t fnum,
387 bool flag);
388 NTSTATUS cli_nt_delete_on_close_recv(struct tevent_req *req);
389 NTSTATUS cli_nt_delete_on_close(struct cli_state *cli, uint16_t fnum, bool flag);
390 struct tevent_req *cli_ntcreate_send(TALLOC_CTX *mem_ctx,
391 struct tevent_context *ev,
392 struct cli_state *cli,
393 const char *fname,
394 uint32_t CreatFlags,
395 uint32_t DesiredAccess,
396 uint32_t FileAttributes,
397 uint32_t ShareAccess,
398 uint32_t CreateDisposition,
399 uint32_t CreateOptions,
400 uint32_t ImpersonationLevel,
401 uint8_t SecurityFlags);
402 NTSTATUS cli_ntcreate_recv(struct tevent_req *req,
403 uint16_t *pfnum,
404 struct smb_create_returns *cr);
405 NTSTATUS cli_ntcreate(struct cli_state *cli,
406 const char *fname,
407 uint32_t CreatFlags,
408 uint32_t DesiredAccess,
409 uint32_t FileAttributes,
410 uint32_t ShareAccess,
411 uint32_t CreateDisposition,
412 uint32_t CreateOptions,
413 uint8_t SecurityFlags,
414 uint16_t *pfid,
415 struct smb_create_returns *cr);
416 struct tevent_req *cli_openx_create(TALLOC_CTX *mem_ctx,
417 struct tevent_context *ev,
418 struct cli_state *cli, const char *fname,
419 int flags, int share_mode,
420 struct tevent_req **psmbreq);
421 struct tevent_req *cli_openx_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
422 struct cli_state *cli, const char *fname,
423 int flags, int share_mode);
424 NTSTATUS cli_openx_recv(struct tevent_req *req, uint16_t *fnum);
425 NTSTATUS cli_openx(struct cli_state *cli, const char *fname, int flags, int share_mode, uint16_t *pfnum);
426 NTSTATUS cli_open(struct cli_state *cli, const char *fname, int flags, int share_mode, uint16_t *pfnum);
427 struct tevent_req *cli_smb1_close_create(TALLOC_CTX *mem_ctx,
428 struct tevent_context *ev,
429 struct cli_state *cli, uint16_t fnum,
430 struct tevent_req **psubreq);
431 struct tevent_req *cli_close_send(TALLOC_CTX *mem_ctx,
432 struct tevent_context *ev,
433 struct cli_state *cli, uint16_t fnum);
434 NTSTATUS cli_close_recv(struct tevent_req *req);
435 NTSTATUS cli_close(struct cli_state *cli, uint16_t fnum);
436 struct tevent_req *cli_ftruncate_send(TALLOC_CTX *mem_ctx,
437 struct tevent_context *ev,
438 struct cli_state *cli,
439 uint16_t fnum,
440 uint64_t size);
441 NTSTATUS cli_ftruncate_recv(struct tevent_req *req);
442 NTSTATUS cli_ftruncate(struct cli_state *cli, uint16_t fnum, uint64_t size);
443 NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum,
444 uint32_t offset, uint32_t len,
445 int timeout, unsigned char locktype);
446 NTSTATUS cli_lock32(struct cli_state *cli, uint16_t fnum, uint32_t offset,
447 uint32_t len, int timeout, enum brl_type lock_type);
448 struct tevent_req *cli_unlock_send(TALLOC_CTX *mem_ctx,
449 struct tevent_context *ev,
450 struct cli_state *cli,
451 uint16_t fnum,
452 uint64_t offset,
453 uint64_t len);
454 NTSTATUS cli_unlock_recv(struct tevent_req *req);
455 NTSTATUS cli_unlock(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len);
456 NTSTATUS cli_lock64(struct cli_state *cli, uint16_t fnum,
457 uint64_t offset, uint64_t len, int timeout,
458 enum brl_type lock_type);
459 struct tevent_req *cli_unlock64_send(TALLOC_CTX *mem_ctx,
460 struct tevent_context *ev,
461 struct cli_state *cli,
462 uint16_t fnum,
463 uint64_t offset,
464 uint64_t len);
465 NTSTATUS cli_unlock64_recv(struct tevent_req *req);
466 NTSTATUS cli_unlock64(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
467 struct tevent_req *cli_posix_lock_send(TALLOC_CTX *mem_ctx,
468 struct tevent_context *ev,
469 struct cli_state *cli,
470 uint16_t fnum,
471 uint64_t offset,
472 uint64_t len,
473 bool wait_lock,
474 enum brl_type lock_type);
475 NTSTATUS cli_posix_lock_recv(struct tevent_req *req);
476 NTSTATUS cli_posix_lock(struct cli_state *cli, uint16_t fnum,
477 uint64_t offset, uint64_t len,
478 bool wait_lock, enum brl_type lock_type);
479 struct tevent_req *cli_posix_unlock_send(TALLOC_CTX *mem_ctx,
480 struct tevent_context *ev,
481 struct cli_state *cli,
482 uint16_t fnum,
483 uint64_t offset,
484 uint64_t len);
485 NTSTATUS cli_posix_unlock_recv(struct tevent_req *req);
486 NTSTATUS cli_posix_unlock(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
487 struct tevent_req *cli_getattrE_send(TALLOC_CTX *mem_ctx,
488 struct tevent_context *ev,
489 struct cli_state *cli,
490 uint16_t fnum);
491 NTSTATUS cli_getattrE_recv(struct tevent_req *req,
492 uint16_t *attr,
493 off_t *size,
494 time_t *change_time,
495 time_t *access_time,
496 time_t *write_time);
497 NTSTATUS cli_getattrE(struct cli_state *cli,
498 uint16_t fnum,
499 uint16_t *attr,
500 off_t *size,
501 time_t *change_time,
502 time_t *access_time,
503 time_t *write_time);
504 struct tevent_req *cli_setattrE_send(TALLOC_CTX *mem_ctx,
505 struct tevent_context *ev,
506 struct cli_state *cli,
507 uint16_t fnum,
508 time_t change_time,
509 time_t access_time,
510 time_t write_time);
511 NTSTATUS cli_setattrE_recv(struct tevent_req *req);
512 NTSTATUS cli_setattrE(struct cli_state *cli,
513 uint16_t fnum,
514 time_t change_time,
515 time_t access_time,
516 time_t write_time);
517 struct tevent_req *cli_getatr_send(TALLOC_CTX *mem_ctx,
518 struct tevent_context *ev,
519 struct cli_state *cli,
520 const char *fname);
521 NTSTATUS cli_getatr_recv(struct tevent_req *req,
522 uint16_t *attr,
523 off_t *size,
524 time_t *write_time);
525 NTSTATUS cli_getatr(struct cli_state *cli,
526 const char *fname,
527 uint16_t *attr,
528 off_t *size,
529 time_t *write_time);
530 struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
531 struct tevent_context *ev,
532 struct cli_state *cli,
533 const char *fname,
534 uint16_t attr,
535 time_t mtime);
536 NTSTATUS cli_setatr_recv(struct tevent_req *req);
537 NTSTATUS cli_setatr(struct cli_state *cli,
538 const char *fname,
539 uint16_t attr,
540 time_t mtime);
541 struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
542 struct tevent_context *ev,
543 struct cli_state *cli,
544 const char *fname);
545 NTSTATUS cli_chkpath_recv(struct tevent_req *req);
546 NTSTATUS cli_chkpath(struct cli_state *cli, const char *path);
547 struct tevent_req *cli_dskattr_send(TALLOC_CTX *mem_ctx,
548 struct tevent_context *ev,
549 struct cli_state *cli);
550 NTSTATUS cli_dskattr_recv(struct tevent_req *req, int *bsize, int *total,
551 int *avail);
552 NTSTATUS cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail);
553 NTSTATUS cli_disk_size(struct cli_state *cli, const char *path, uint64_t *bsize,
554 uint64_t *total, uint64_t *avail);
555 struct tevent_req *cli_ctemp_send(TALLOC_CTX *mem_ctx,
556 struct tevent_context *ev,
557 struct cli_state *cli,
558 const char *path);
559 NTSTATUS cli_ctemp_recv(struct tevent_req *req,
560 TALLOC_CTX *ctx,
561 uint16_t *pfnum,
562 char **outfile);
563 NTSTATUS cli_ctemp(struct cli_state *cli,
564 TALLOC_CTX *ctx,
565 const char *path,
566 uint16_t *pfnum,
567 char **out_path);
568 NTSTATUS cli_raw_ioctl(struct cli_state *cli, uint16_t fnum, uint32_t code, DATA_BLOB *blob);
569 NTSTATUS cli_set_ea_path(struct cli_state *cli, const char *path,
570 const char *ea_name, const char *ea_val,
571 size_t ea_len);
572 NTSTATUS cli_set_ea_fnum(struct cli_state *cli, uint16_t fnum,
573 const char *ea_name, const char *ea_val,
574 size_t ea_len);
575 struct tevent_req *cli_get_ea_list_path_send(TALLOC_CTX *mem_ctx,
576 struct tevent_context *ev,
577 struct cli_state *cli,
578 const char *fname);
579 NTSTATUS cli_get_ea_list_path_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
580 size_t *pnum_eas, struct ea_struct **peas);
581 NTSTATUS cli_get_ea_list_path(struct cli_state *cli, const char *path,
582 TALLOC_CTX *ctx,
583 size_t *pnum_eas,
584 struct ea_struct **pea_list);
585 struct tevent_req *cli_posix_open_send(TALLOC_CTX *mem_ctx,
586 struct tevent_context *ev,
587 struct cli_state *cli,
588 const char *fname,
589 int flags,
590 mode_t mode);
591 NTSTATUS cli_posix_open_recv(struct tevent_req *req, uint16_t *pfnum);
592 NTSTATUS cli_posix_open(struct cli_state *cli, const char *fname,
593 int flags, mode_t mode, uint16_t *fnum);
594 struct tevent_req *cli_posix_mkdir_send(TALLOC_CTX *mem_ctx,
595 struct tevent_context *ev,
596 struct cli_state *cli,
597 const char *fname,
598 mode_t mode);
599 NTSTATUS cli_posix_mkdir_recv(struct tevent_req *req);
600 NTSTATUS cli_posix_mkdir(struct cli_state *cli, const char *fname, mode_t mode);
602 struct tevent_req *cli_posix_unlink_send(TALLOC_CTX *mem_ctx,
603 struct tevent_context *ev,
604 struct cli_state *cli,
605 const char *fname);
606 NTSTATUS cli_posix_unlink_recv(struct tevent_req *req);
607 NTSTATUS cli_posix_unlink(struct cli_state *cli, const char *fname);
609 struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx,
610 struct tevent_context *ev,
611 struct cli_state *cli,
612 const char *fname);
613 NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx);
614 NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname);
615 struct tevent_req *cli_notify_send(TALLOC_CTX *mem_ctx,
616 struct tevent_context *ev,
617 struct cli_state *cli, uint16_t fnum,
618 uint32_t buffer_size,
619 uint32_t completion_filter, bool recursive);
620 NTSTATUS cli_notify_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
621 uint32_t *pnum_changes,
622 struct notify_change **pchanges);
623 NTSTATUS cli_notify(struct cli_state *cli, uint16_t fnum, uint32_t buffer_size,
624 uint32_t completion_filter, bool recursive,
625 TALLOC_CTX *mem_ctx, uint32_t *pnum_changes,
626 struct notify_change **pchanges);
628 struct tevent_req *cli_nttrans_create_send(TALLOC_CTX *mem_ctx,
629 struct tevent_context *ev,
630 struct cli_state *cli,
631 const char *fname,
632 uint32_t CreatFlags,
633 uint32_t DesiredAccess,
634 uint32_t FileAttributes,
635 uint32_t ShareAccess,
636 uint32_t CreateDisposition,
637 uint32_t CreateOptions,
638 uint8_t SecurityFlags,
639 struct security_descriptor *secdesc,
640 struct ea_struct *eas,
641 int num_eas);
642 NTSTATUS cli_nttrans_create_recv(struct tevent_req *req,
643 uint16_t *fnum,
644 struct smb_create_returns *cr);
645 NTSTATUS cli_nttrans_create(struct cli_state *cli,
646 const char *fname,
647 uint32_t CreatFlags,
648 uint32_t DesiredAccess,
649 uint32_t FileAttributes,
650 uint32_t ShareAccess,
651 uint32_t CreateDisposition,
652 uint32_t CreateOptions,
653 uint8_t SecurityFlags,
654 struct security_descriptor *secdesc,
655 struct ea_struct *eas,
656 int num_eas,
657 uint16_t *pfid,
658 struct smb_create_returns *cr);
660 /* The following definitions come from libsmb/clifsinfo.c */
662 struct tevent_req *cli_unix_extensions_version_send(TALLOC_CTX *mem_ctx,
663 struct tevent_context *ev,
664 struct cli_state *cli);
665 NTSTATUS cli_unix_extensions_version_recv(struct tevent_req *req,
666 uint16_t *pmajor, uint16_t *pminor,
667 uint32_t *pcaplow,
668 uint32_t *pcaphigh);
669 NTSTATUS cli_unix_extensions_version(struct cli_state *cli, uint16_t *pmajor,
670 uint16_t *pminor, uint32_t *pcaplow,
671 uint32_t *pcaphigh);
672 struct tevent_req *cli_set_unix_extensions_capabilities_send(
673 TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli,
674 uint16_t major, uint16_t minor, uint32_t caplow, uint32_t caphigh);
675 NTSTATUS cli_set_unix_extensions_capabilities_recv(struct tevent_req *req);
676 NTSTATUS cli_set_unix_extensions_capabilities(struct cli_state *cli,
677 uint16_t major, uint16_t minor,
678 uint32_t caplow, uint32_t caphigh);
679 struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx,
680 struct tevent_context *ev,
681 struct cli_state *cli);
682 NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr);
683 NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr);
684 NTSTATUS cli_get_fs_volume_info(struct cli_state *cli,
685 TALLOC_CTX *mem_ctx, char **volume_name,
686 uint32_t *pserial_number, time_t *pdate);
687 NTSTATUS cli_get_fs_full_size_info(struct cli_state *cli,
688 uint64_t *total_allocation_units,
689 uint64_t *caller_allocation_units,
690 uint64_t *actual_allocation_units,
691 uint64_t *sectors_per_allocation_unit,
692 uint64_t *bytes_per_sector);
693 NTSTATUS cli_get_posix_fs_info(struct cli_state *cli,
694 uint32_t *optimal_transfer_size,
695 uint32_t *block_size,
696 uint64_t *total_blocks,
697 uint64_t *blocks_available,
698 uint64_t *user_blocks_available,
699 uint64_t *total_file_nodes,
700 uint64_t *free_file_nodes,
701 uint64_t *fs_identifier);
702 struct tevent_req *cli_posix_whoami_send(TALLOC_CTX *mem_ctx,
703 struct tevent_context *ev,
704 struct cli_state *cli);
705 NTSTATUS cli_posix_whoami_recv(struct tevent_req *req,
706 TALLOC_CTX *mem_ctx,
707 uint64_t *puid,
708 uint64_t *pgid,
709 uint32_t *pnum_gids,
710 uint64_t **pgids,
711 uint32_t *pnum_sids,
712 struct dom_sid **psids,
713 bool *pguest);
714 NTSTATUS cli_posix_whoami(struct cli_state *cli,
715 TALLOC_CTX *mem_ctx,
716 uint64_t *puid,
717 uint64_t *pgid,
718 uint32_t *num_gids,
719 uint64_t **gids,
720 uint32_t *num_sids,
721 struct dom_sid **sids,
722 bool *pguest);
724 /* The following definitions come from libsmb/clilist.c */
726 NTSTATUS cli_list_old(struct cli_state *cli,const char *Mask,uint16_t attribute,
727 NTSTATUS (*fn)(const char *, struct file_info *,
728 const char *, void *), void *state);
729 NTSTATUS cli_list_trans(struct cli_state *cli, const char *mask,
730 uint16_t attribute, int info_level,
731 NTSTATUS (*fn)(const char *mnt, struct file_info *finfo,
732 const char *mask, void *private_data),
733 void *private_data);
734 struct tevent_req *cli_list_send(TALLOC_CTX *mem_ctx,
735 struct tevent_context *ev,
736 struct cli_state *cli,
737 const char *mask,
738 uint16_t attribute,
739 uint16_t info_level);
740 NTSTATUS cli_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
741 struct file_info **finfo, size_t *num_finfo);
742 NTSTATUS cli_list(struct cli_state *cli,const char *Mask,uint16_t attribute,
743 NTSTATUS (*fn)(const char *, struct file_info *, const char *,
744 void *), void *state);
746 /* The following definitions come from libsmb/climessage.c */
748 struct tevent_req *cli_message_send(TALLOC_CTX *mem_ctx,
749 struct tevent_context *ev,
750 struct cli_state *cli,
751 const char *host, const char *username,
752 const char *message);
753 NTSTATUS cli_message_recv(struct tevent_req *req);
754 NTSTATUS cli_message(struct cli_state *cli, const char *host,
755 const char *username, const char *message);
757 /* The following definitions come from libsmb/clioplock.c */
759 struct tevent_req *cli_smb_oplock_break_waiter_send(TALLOC_CTX *mem_ctx,
760 struct tevent_context *ev,
761 struct cli_state *cli);
762 NTSTATUS cli_smb_oplock_break_waiter_recv(struct tevent_req *req,
763 uint16_t *pfnum,
764 uint8_t *plevel);
766 struct tevent_req *cli_oplock_ack_send(TALLOC_CTX *mem_ctx,
767 struct tevent_context *ev,
768 struct cli_state *cli,
769 uint16_t fnum, uint8_t level);
770 NTSTATUS cli_oplock_ack_recv(struct tevent_req *req);
772 /* The following definitions come from libsmb/cliprint.c */
774 int cli_print_queue(struct cli_state *cli,
775 void (*fn)(struct print_job_info *));
776 int cli_printjob_del(struct cli_state *cli, int job);
778 /* The following definitions come from libsmb/cliquota.c */
780 NTSTATUS cli_get_quota_handle(struct cli_state *cli, uint16_t *quota_fnum);
781 void free_ntquota_list(SMB_NTQUOTA_LIST **qt_list);
782 bool parse_user_quota_record(const uint8_t *rdata,
783 unsigned int rdata_count,
784 unsigned int *offset,
785 SMB_NTQUOTA_STRUCT *pqt);
786 bool add_record_to_ntquota_list(TALLOC_CTX *mem_ctx,
787 SMB_NTQUOTA_STRUCT *pqt,
788 SMB_NTQUOTA_LIST **pqt_list);
789 NTSTATUS parse_user_quota_list(const uint8_t *curdata,
790 uint32_t curdata_size,
791 TALLOC_CTX *mem_ctx,
792 SMB_NTQUOTA_LIST **pqt_list);
793 NTSTATUS parse_fs_quota_buffer(const uint8_t *rdata,
794 unsigned int rdata_count,
795 SMB_NTQUOTA_STRUCT *pqt);
796 NTSTATUS build_user_quota_buffer(SMB_NTQUOTA_LIST *qt_list,
797 uint32_t maxlen,
798 TALLOC_CTX *mem_ctx,
799 DATA_BLOB *outbuf,
800 SMB_NTQUOTA_LIST **end_ptr);
801 NTSTATUS build_fs_quota_buffer(TALLOC_CTX *mem_ctx,
802 const SMB_NTQUOTA_STRUCT *pqt,
803 DATA_BLOB *blob,
804 uint32_t maxlen);
805 NTSTATUS cli_get_user_quota(struct cli_state *cli, int quota_fnum,
806 SMB_NTQUOTA_STRUCT *pqt);
807 NTSTATUS cli_set_user_quota(struct cli_state *cli,
808 int quota_fnum,
809 SMB_NTQUOTA_LIST *qtl);
810 NTSTATUS cli_list_user_quota(struct cli_state *cli, int quota_fnum,
811 SMB_NTQUOTA_LIST **pqt_list);
812 NTSTATUS cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum,
813 SMB_NTQUOTA_STRUCT *pqt);
814 NTSTATUS cli_set_fs_quota_info(struct cli_state *cli, int quota_fnum,
815 SMB_NTQUOTA_STRUCT *pqt);
817 /* The following definitions come from libsmb/clireadwrite.c */
819 struct tevent_req *cli_read_andx_create(TALLOC_CTX *mem_ctx,
820 struct tevent_context *ev,
821 struct cli_state *cli, uint16_t fnum,
822 off_t offset, size_t size,
823 struct tevent_req **psmbreq);
824 struct tevent_req *cli_read_andx_send(TALLOC_CTX *mem_ctx,
825 struct tevent_context *ev,
826 struct cli_state *cli, uint16_t fnum,
827 off_t offset, size_t size);
828 NTSTATUS cli_read_andx_recv(struct tevent_req *req, ssize_t *received,
829 uint8_t **rcvbuf);
830 struct tevent_req *cli_pull_send(TALLOC_CTX *mem_ctx,
831 struct tevent_context *ev,
832 struct cli_state *cli,
833 uint16_t fnum, off_t start_offset,
834 off_t size, size_t window_size,
835 NTSTATUS (*sink)(char *buf, size_t n,
836 void *priv),
837 void *priv);
838 NTSTATUS cli_pull_recv(struct tevent_req *req, off_t *received);
839 NTSTATUS cli_pull(struct cli_state *cli, uint16_t fnum,
840 off_t start_offset, off_t size, size_t window_size,
841 NTSTATUS (*sink)(char *buf, size_t n, void *priv),
842 void *priv, off_t *received);
843 NTSTATUS cli_read_sink(char *buf, size_t n, void *priv);
844 struct tevent_req *cli_read_send(
845 TALLOC_CTX *mem_ctx,
846 struct tevent_context *ev,
847 struct cli_state *cli,
848 uint16_t fnum,
849 char *buf,
850 off_t offset,
851 size_t size);
852 NTSTATUS cli_read_recv(struct tevent_req *req, size_t *received);
853 NTSTATUS cli_read(struct cli_state *cli, uint16_t fnum,
854 char *buf, off_t offset, size_t size,
855 size_t *nread);
856 NTSTATUS cli_smbwrite(struct cli_state *cli, uint16_t fnum, char *buf,
857 off_t offset, size_t size1, size_t *ptotal);
858 struct tevent_req *cli_write_andx_create(TALLOC_CTX *mem_ctx,
859 struct tevent_context *ev,
860 struct cli_state *cli, uint16_t fnum,
861 uint16_t mode, const uint8_t *buf,
862 off_t offset, size_t size,
863 struct tevent_req **reqs_before,
864 int num_reqs_before,
865 struct tevent_req **psmbreq);
866 struct tevent_req *cli_write_andx_send(TALLOC_CTX *mem_ctx,
867 struct tevent_context *ev,
868 struct cli_state *cli, uint16_t fnum,
869 uint16_t mode, const uint8_t *buf,
870 off_t offset, size_t size);
871 NTSTATUS cli_write_andx_recv(struct tevent_req *req, size_t *pwritten);
873 struct tevent_req *cli_write_send(TALLOC_CTX *mem_ctx,
874 struct tevent_context *ev,
875 struct cli_state *cli, uint16_t fnum,
876 uint16_t mode, const uint8_t *buf,
877 off_t offset, size_t size);
878 NTSTATUS cli_write_recv(struct tevent_req *req, size_t *pwritten);
880 struct tevent_req *cli_writeall_send(
881 TALLOC_CTX *mem_ctx,
882 struct tevent_context *ev,
883 struct cli_state *cli,
884 uint16_t fnum,
885 uint16_t mode,
886 const uint8_t *buf,
887 off_t offset,
888 size_t size);
889 NTSTATUS cli_writeall_recv(struct tevent_req *req, size_t *pwritten);
890 NTSTATUS cli_writeall(struct cli_state *cli, uint16_t fnum, uint16_t mode,
891 const uint8_t *buf, off_t offset, size_t size,
892 size_t *pwritten);
894 struct tevent_req *cli_push_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
895 struct cli_state *cli,
896 uint16_t fnum, uint16_t mode,
897 off_t start_offset, size_t window_size,
898 size_t (*source)(uint8_t *buf, size_t n,
899 void *priv),
900 void *priv);
901 NTSTATUS cli_push_recv(struct tevent_req *req);
902 NTSTATUS cli_push(struct cli_state *cli, uint16_t fnum, uint16_t mode,
903 off_t start_offset, size_t window_size,
904 size_t (*source)(uint8_t *buf, size_t n, void *priv),
905 void *priv);
907 NTSTATUS cli_splice(struct cli_state *srccli, struct cli_state *dstcli,
908 uint16_t src_fnum, uint16_t dst_fnum,
909 off_t size,
910 off_t src_offset, off_t dst_offset,
911 off_t *written,
912 int (*splice_cb)(off_t n, void *priv), void *priv);
914 /* The following definitions come from libsmb/clisecdesc.c */
916 NTSTATUS cli_query_security_descriptor(struct cli_state *cli,
917 uint16_t fnum,
918 uint32_t sec_info,
919 TALLOC_CTX *mem_ctx,
920 struct security_descriptor **sd);
921 NTSTATUS cli_query_secdesc(struct cli_state *cli, uint16_t fnum,
922 TALLOC_CTX *mem_ctx, struct security_descriptor **sd);
923 NTSTATUS cli_set_security_descriptor(struct cli_state *cli,
924 uint16_t fnum,
925 uint32_t sec_info,
926 const struct security_descriptor *sd);
927 NTSTATUS cli_set_secdesc(struct cli_state *cli, uint16_t fnum,
928 const struct security_descriptor *sd);
930 NTSTATUS cli_query_mxac(struct cli_state *cli,
931 const char *filename,
932 uint32_t *mxac);
934 /* The following definitions come from libsmb/clistr.c */
936 size_t clistr_pull_talloc(TALLOC_CTX *ctx,
937 const char *base,
938 uint16_t flags2,
939 char **pp_dest,
940 const void *src,
941 int src_len,
942 int flags);
943 bool clistr_is_previous_version_path(const char *path,
944 const char **startp,
945 const char **endp,
946 time_t *ptime);
948 /* The following definitions come from libsmb/clitrans.c */
950 struct tevent_req *cli_trans_send(
951 TALLOC_CTX *mem_ctx, struct tevent_context *ev,
952 struct cli_state *cli, uint16_t additional_flags2, uint8_t cmd,
953 const char *pipe_name, uint16_t fid, uint16_t function, int flags,
954 uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
955 uint8_t *param, uint32_t num_param, uint32_t max_param,
956 uint8_t *data, uint32_t num_data, uint32_t max_data);
957 NTSTATUS cli_trans_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
958 uint16_t *recv_flags2,
959 uint16_t **setup, uint8_t min_setup,
960 uint8_t *num_setup,
961 uint8_t **param, uint32_t min_param,
962 uint32_t *num_param,
963 uint8_t **data, uint32_t min_data,
964 uint32_t *num_data);
965 NTSTATUS cli_trans(TALLOC_CTX *mem_ctx, struct cli_state *cli,
966 uint8_t trans_cmd,
967 const char *pipe_name, uint16_t fid, uint16_t function,
968 int flags,
969 uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
970 uint8_t *param, uint32_t num_param, uint32_t max_param,
971 uint8_t *data, uint32_t num_data, uint32_t max_data,
972 uint16_t *recv_flags2,
973 uint16_t **rsetup, uint8_t min_rsetup, uint8_t *num_rsetup,
974 uint8_t **rparam, uint32_t min_rparam, uint32_t *num_rparam,
975 uint8_t **rdata, uint32_t min_rdata, uint32_t *num_rdata);
977 /* The following definitions come from libsmb/reparse_symlink.c */
979 bool symlink_reparse_buffer_marshall(
980 const char *substitute, const char *printname, uint32_t flags,
981 TALLOC_CTX *mem_ctx, uint8_t **pdst, size_t *pdstlen);
982 bool symlink_reparse_buffer_parse(
983 const uint8_t *src, size_t srclen, TALLOC_CTX *mem_ctx,
984 char **psubstitute_name, char **pprint_name, uint32_t *pflags);
986 /* The following definitions come from libsmb/clisymlink.c */
988 struct tevent_req *cli_symlink_send(TALLOC_CTX *mem_ctx,
989 struct tevent_context *ev,
990 struct cli_state *cli,
991 const char *oldpath,
992 const char *newpath,
993 uint32_t flags);
994 NTSTATUS cli_symlink_recv(struct tevent_req *req);
995 NTSTATUS cli_symlink(struct cli_state *cli, const char *oldname,
996 const char *newname, uint32_t flags);
998 struct tevent_req *cli_readlink_send(TALLOC_CTX *mem_ctx,
999 struct tevent_context *ev,
1000 struct cli_state *cli,
1001 const char *fname);
1002 NTSTATUS cli_readlink_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1003 char **psubstitute_name, char **pprint_name,
1004 uint32_t *pflags);
1005 NTSTATUS cli_readlink(struct cli_state *cli, const char *fname,
1006 TALLOC_CTX *mem_ctx, char **psubstitute_name,
1007 char **pprint_name, uint32_t *pflags);
1009 NTSTATUS fill_quota_buffer(TALLOC_CTX *mem_ctx,
1010 SMB_NTQUOTA_LIST *tmp_list,
1011 bool return_single,
1012 uint32_t max_data,
1013 DATA_BLOB *blob,
1014 SMB_NTQUOTA_LIST **end_ptr);
1015 /* The following definitions come from libsmb/passchange.c */
1017 NTSTATUS remote_password_change(const char *remote_machine,
1018 const char *domain, const char *user_name,
1019 const char *old_passwd, const char *new_passwd,
1020 char **err_str);
1022 #endif /* _LIBSMB_PROTO_H_ */