summaryrefslogtreecommitdiff
path: root/source3/include/proto.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-01-26 08:37:13 +0100
committerVolker Lendecke <vl@samba.org>2009-01-30 12:47:59 +0100
commit0bd92281e49b91a9b9a14486adbe6f44affb7a13 (patch)
tree52d898f315e99320f8e186bf37d9f9e37e28b38f /source3/include/proto.h
parent7b934c6af3f80c9d75151906eed929045cec28a2 (diff)
downloadsamba-0bd92281e49b91a9b9a14486adbe6f44affb7a13.tar.gz
samba-0bd92281e49b91a9b9a14486adbe6f44affb7a13.tar.bz2
samba-0bd92281e49b91a9b9a14486adbe6f44affb7a13.zip
Make cli_tcon_andx async
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r--source3/include/proto.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 943ab5e3f1..b06d8d6758 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -2328,8 +2328,14 @@ struct async_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
struct cli_state *cli);
NTSTATUS cli_session_setup_guest_recv(struct async_req *req);
bool cli_ulogoff(struct cli_state *cli);
-bool cli_send_tconX(struct cli_state *cli,
- const char *share, const char *dev, const char *pass, int passlen);
+struct async_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
+ struct event_context *ev,
+ struct cli_state *cli,
+ const char *share, const char *dev,
+ const char *pass, int passlen);
+NTSTATUS cli_tcon_andx_recv(struct async_req *req);
+NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
+ const char *dev, const char *pass, int passlen);
bool cli_tdis(struct cli_state *cli);
void cli_negprot_sendsync(struct cli_state *cli);
NTSTATUS cli_negprot(struct cli_state *cli);