summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-03-29 19:47:18 +0200
committerVolker Lendecke <vl@samba.org>2009-04-06 21:32:07 +0200
commit807328ce6d9dea481995a9f6e86f2b60f4ca4c00 (patch)
tree37c07b09e7c89de35c4f9b4493f8c231613b0d4f /source3/include
parent03becb506613b4ec1d365ff2bbd63e53b0847805 (diff)
downloadsamba-807328ce6d9dea481995a9f6e86f2b60f4ca4c00.tar.gz
samba-807328ce6d9dea481995a9f6e86f2b60f4ca4c00.tar.bz2
samba-807328ce6d9dea481995a9f6e86f2b60f4ca4c00.zip
Convert cli_tcon_andx to tevent_req
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index e3b83491b4..b8ea5d6adc 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -2308,12 +2308,12 @@ struct tevent_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
struct cli_state *cli);
NTSTATUS cli_session_setup_guest_recv(struct tevent_req *req);
bool cli_ulogoff(struct cli_state *cli);
-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);
+struct tevent_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 tevent_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);