mirror of
https://github.com/samba-team/samba.git
synced 2025-08-05 12:22:11 +03:00
libcli/smb: pass down smbXcli_session to smb1cli_req_create/send() and smb1cli_trans*
metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Tue Jul 24 00:08:58 CEST 2012 on sn-devel-104
This commit is contained in:
@ -62,7 +62,6 @@ struct tevent_req *cli_smb_req_create(TALLOC_CTX *mem_ctx,
|
||||
uint8_t clear_flags = 0;
|
||||
uint16_t additional_flags2 = 0;
|
||||
uint16_t clear_flags2 = 0;
|
||||
uint16_t uid = 0;
|
||||
|
||||
state = talloc_zero(mem_ctx, struct cli_smb_req_state);
|
||||
if (state == NULL) {
|
||||
@ -88,14 +87,13 @@ struct tevent_req *cli_smb_req_create(TALLOC_CTX *mem_ctx,
|
||||
additional_flags2 |= FLAGS2_DFS_PATHNAMES;
|
||||
}
|
||||
|
||||
uid = cli_state_get_uid(cli);
|
||||
state->req = smb1cli_req_create(state, ev, cli->conn, smb_command,
|
||||
additional_flags, clear_flags,
|
||||
additional_flags2, clear_flags2,
|
||||
cli->timeout,
|
||||
cli->smb1.pid,
|
||||
cli->smb1.tid,
|
||||
uid,
|
||||
cli->smb1.session,
|
||||
wct, vwv, iov_count, bytes_iov);
|
||||
if (state->req == NULL) {
|
||||
talloc_free(state);
|
||||
@ -122,7 +120,6 @@ struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx,
|
||||
uint8_t clear_flags = 0;
|
||||
uint16_t additional_flags2 = 0;
|
||||
uint16_t clear_flags2 = 0;
|
||||
uint16_t uid = 0;
|
||||
|
||||
state = talloc_zero(mem_ctx, struct cli_smb_req_state);
|
||||
if (state == NULL) {
|
||||
@ -148,14 +145,13 @@ struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx,
|
||||
additional_flags2 |= FLAGS2_DFS_PATHNAMES;
|
||||
}
|
||||
|
||||
uid = cli_state_get_uid(cli);
|
||||
state->req = smb1cli_req_send(state, ev, cli->conn, smb_command,
|
||||
additional_flags, clear_flags,
|
||||
additional_flags2, clear_flags2,
|
||||
cli->timeout,
|
||||
cli->smb1.pid,
|
||||
cli->smb1.tid,
|
||||
uid,
|
||||
cli->smb1.session,
|
||||
wct, vwv, num_bytes, bytes);
|
||||
if (state->req == NULL) {
|
||||
talloc_free(state);
|
||||
|
Reference in New Issue
Block a user