diff options
author | Volker Lendecke <vl@samba.org> | 2009-01-25 21:54:55 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-01-30 12:47:59 +0100 |
commit | 7b934c6af3f80c9d75151906eed929045cec28a2 (patch) | |
tree | 3eb3a31be79d7229ef6c282ae919eb7a7d65f2a1 /source3/include | |
parent | fb7b92abc2bea4b3d91cdd896f02db88065a4b8f (diff) | |
download | samba-7b934c6af3f80c9d75151906eed929045cec28a2.tar.gz samba-7b934c6af3f80c9d75151906eed929045cec28a2.tar.bz2 samba-7b934c6af3f80c9d75151906eed929045cec28a2.zip |
Make cli_session_setup_guest async
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 8276847706..943ab5e3f1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2323,6 +2323,10 @@ NTSTATUS cli_session_setup(struct cli_state *cli, const char *pass, int passlen, const char *ntpass, int ntpasslen, const char *workgroup); +struct async_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + 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); |