diff options
author | Gregor Beck <gbeck@sernet.de> | 2013-09-13 12:55:34 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-01-07 08:37:41 +0100 |
commit | 46d29d46bc065d51e3f7ca6892ccd04cf6ce9bef (patch) | |
tree | b393af64f78fe47d3df53aa35a0d1fb15f20229d /source3/libsmb/cli_np_tstream.h | |
parent | 6ebbce96a4fcd1fea8009698e9c0ea8fb4a5e220 (diff) | |
download | samba-46d29d46bc065d51e3f7ca6892ccd04cf6ce9bef.tar.gz samba-46d29d46bc065d51e3f7ca6892ccd04cf6ce9bef.tar.xz samba-46d29d46bc065d51e3f7ca6892ccd04cf6ce9bef.zip |
s3:libsmb: do not use cli_state internally within cli_np_tstream
Signed-off-by: Gregor Beck <gbeck@sernet.de>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/libsmb/cli_np_tstream.h')
-rw-r--r-- | source3/libsmb/cli_np_tstream.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/libsmb/cli_np_tstream.h b/source3/libsmb/cli_np_tstream.h index 6f5e855330..2404e7844a 100644 --- a/source3/libsmb/cli_np_tstream.h +++ b/source3/libsmb/cli_np_tstream.h @@ -24,10 +24,16 @@ struct tevent_context; struct tevent_req; struct cli_state; struct tstream_context; +struct smbXcli_conn; +struct smbXcli_session; +struct smbXcli_tcon; struct tevent_req *tstream_cli_np_open_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, - struct cli_state *cli, + struct smbXcli_conn *conn, + struct smbXcli_session *session, + struct smbXcli_tcon *tcon, + uint16_t pid, unsigned int timeout, const char *npipe); NTSTATUS _tstream_cli_np_open_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, |