diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-26 09:41:25 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-26 23:01:37 +0200 |
commit | 7c242cab9533ec240756fe1f18e99aef7d4086c2 (patch) | |
tree | 15c11fe4eb935c9fc52755b6f7ad1b3c7af9e19f /source3/include | |
parent | f62bde93ce911445c0f3cb952d17d271a6536385 (diff) | |
download | samba-7c242cab9533ec240756fe1f18e99aef7d4086c2.tar.gz samba-7c242cab9533ec240756fe1f18e99aef7d4086c2.tar.bz2 samba-7c242cab9533ec240756fe1f18e99aef7d4086c2.zip |
s3: Convert cli_qpathinfo_basic to cli_qpathinfo_send
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index c802b69951..03b2277fd5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2695,6 +2695,12 @@ bool cli_qfileinfo(struct cli_state *cli, uint16_t fnum, struct timespec *write_time, struct timespec *change_time, SMB_INO_T *ino); +struct tevent_req *cli_qpathinfo_basic_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + struct cli_state *cli, + const char *fname); +NTSTATUS cli_qpathinfo_basic_recv(struct tevent_req *req, + SMB_STRUCT_STAT *sbuf, uint32 *attributes); NTSTATUS cli_qpathinfo_basic(struct cli_state *cli, const char *name, SMB_STRUCT_STAT *sbuf, uint32 *attributes); bool cli_qfileinfo_test(struct cli_state *cli, uint16_t fnum, int level, char **poutdata, uint32 *poutlen); |