summaryrefslogtreecommitdiff
path: root/source3/libsmb/smb2cli_base.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-08-12 17:26:13 +0200
committerStefan Metzmacher <metze@samba.org>2011-08-12 19:38:27 +0200
commiteeb0298ac1ba70d5114b48d7de4549e80d83e709 (patch)
treed4d02093d9baf9deb0e03d4ee88aeaf46badaa95 /source3/libsmb/smb2cli_base.h
parent28c4d2d0f318d017e356cf8e80ff0da516346fee (diff)
downloadsamba-eeb0298ac1ba70d5114b48d7de4549e80d83e709.tar.gz
samba-eeb0298ac1ba70d5114b48d7de4549e80d83e709.tar.bz2
samba-eeb0298ac1ba70d5114b48d7de4549e80d83e709.zip
s3:smb2cli: pass more fields to smb2cli_req_create()/smb2cli_req_send()
The caller should take care of the global cli_state values. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Fri Aug 12 19:38:27 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/libsmb/smb2cli_base.h')
-rw-r--r--source3/libsmb/smb2cli_base.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/source3/libsmb/smb2cli_base.h b/source3/libsmb/smb2cli_base.h
index 85cf347156..348f842d40 100644
--- a/source3/libsmb/smb2cli_base.h
+++ b/source3/libsmb/smb2cli_base.h
@@ -24,7 +24,11 @@ struct tevent_req *smb2cli_req_create(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct cli_state *cli,
uint16_t cmd,
- uint32_t flags,
+ uint32_t additional_flags,
+ uint32_t clear_flags,
+ uint32_t pid,
+ uint32_t tid,
+ uint64_t uid,
const uint8_t *fixed,
uint16_t fixed_len,
const uint8_t *dyn,
@@ -35,7 +39,11 @@ struct tevent_req *smb2cli_req_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct cli_state *cli,
uint16_t cmd,
- uint32_t flags,
+ uint32_t additional_flags,
+ uint32_t clear_flags,
+ uint32_t pid,
+ uint32_t tid,
+ uint64_t uid,
const uint8_t *fixed,
uint16_t fixed_len,
const uint8_t *dyn,