diff options
author | Volker Lendecke <vl@samba.org> | 2010-10-24 16:45:54 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2010-10-24 20:46:28 +0000 |
commit | 7b3fccd5b4342494a33081f88b5069b2af9749de (patch) | |
tree | 30a43cc761bfc681272f513ea846c36392e0b25f /source3/include | |
parent | 40cc1a3d2e4d63153730a03d89cca8c936a2e06c (diff) | |
download | samba-7b3fccd5b4342494a33081f88b5069b2af9749de.tar.gz samba-7b3fccd5b4342494a33081f88b5069b2af9749de.tar.bz2 samba-7b3fccd5b4342494a33081f88b5069b2af9749de.zip |
s3: Add async cli_setpathinfo
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 0c05e6ecc5..97e1923625 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1768,6 +1768,15 @@ bool cli_state_is_connected(struct cli_state *cli); /* The following definitions come from libsmb/clifile.c */ +struct tevent_req *cli_setpathinfo_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct cli_state *cli, + uint16_t level, + const char *path, + uint8_t *data, + size_t data_len); +NTSTATUS cli_setpathinfo_recv(struct tevent_req *req); + struct tevent_req *cli_posix_symlink_send(TALLOC_CTX *mem_ctx, struct event_context *ev, struct cli_state *cli, |