diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-21 13:46:52 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-21 14:01:56 +0100 |
commit | 37e4e387db869600b68d28d4d7b5290fe8b110ae (patch) | |
tree | 3770d817f87e7c9d7ec3dbce71d1a43a131b6884 /source3/include | |
parent | 5a1606269aeeeb1b777974d88c33df543d1b6f4d (diff) | |
download | samba-37e4e387db869600b68d28d4d7b5290fe8b110ae.tar.gz samba-37e4e387db869600b68d28d4d7b5290fe8b110ae.tar.bz2 samba-37e4e387db869600b68d28d4d7b5290fe8b110ae.zip |
s3: Convert cli_get_fs_attr_info to the async API
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index feeac59004..92cb99744b 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2704,7 +2704,11 @@ NTSTATUS cli_set_unix_extensions_capabilities_recv(struct tevent_req *req); NTSTATUS cli_set_unix_extensions_capabilities(struct cli_state *cli, uint16 major, uint16 minor, uint32 caplow, uint32 caphigh); -bool cli_get_fs_attr_info(struct cli_state *cli, uint32 *fs_attr); +struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct cli_state *cli); +NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr); +NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr); bool cli_get_fs_volume_info_old(struct cli_state *cli, fstring volume_name, uint32 *pserial_number); bool cli_get_fs_volume_info(struct cli_state *cli, fstring volume_name, uint32 *pserial_number, time_t *pdate); bool cli_get_fs_full_size_info(struct cli_state *cli, |