diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-02 18:39:15 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-01-02 12:48:04 -0600 |
commit | 0ef75e4e3cb0e1bd10e367a00f5e9b725587c40a (patch) | |
tree | 5fc4689b76ecdbf0767953737dbbada4d33d5163 /source/libcli/smb_composite | |
parent | a2bc97e8b01ecee48be60823cb19b4e794fb8f93 (diff) | |
download | samba-0ef75e4e3cb0e1bd10e367a00f5e9b725587c40a.tar.gz |
r26646: libcli/smb_composite: Allow specifying SMB parameters in smb_composite_connect structure. AFAIK no global variables will now be used when doing RPC client connections.
Diffstat (limited to 'source/libcli/smb_composite')
-rw-r--r-- | source/libcli/smb_composite/connect.c | 9 | ||||
-rw-r--r-- | source/libcli/smb_composite/fetchfile.c | 8 | ||||
-rw-r--r-- | source/libcli/smb_composite/fsinfo.c | 8 | ||||
-rw-r--r-- | source/libcli/smb_composite/smb_composite.h | 6 |
4 files changed, 26 insertions, 5 deletions
diff --git a/source/libcli/smb_composite/connect.c b/source/libcli/smb_composite/connect.c index b71cfc2c19b..bdefe39b717 100644 --- a/source/libcli/smb_composite/connect.c +++ b/source/libcli/smb_composite/connect.c @@ -63,8 +63,7 @@ static NTSTATUS connect_send_negprot(struct composite_context *c, { struct connect_state *state = talloc_get_type(c->private_data, struct connect_state); - state->req = smb_raw_negotiate_send(state->transport, lp_unicode(global_loadparm), - lp_cli_maxprotocol(global_loadparm)); + state->req = smb_raw_negotiate_send(state->transport, io->in.unicode, io->in.max_protocol); NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = request_handler; @@ -308,9 +307,9 @@ static NTSTATUS connect_socket(struct composite_context *c, /* the socket is up - we can initialise the smbcli transport layer */ state->transport = smbcli_transport_init(state->sock, state, true, - lp_max_xmit(global_loadparm), - lp_maxmux(global_loadparm), - lp_use_spnego(global_loadparm) && lp_nt_status_support(global_loadparm)); + io->in.max_xmit, + io->in.max_mux, + io->in.use_spnego); NT_STATUS_HAVE_NO_MEMORY(state->transport); if (is_ipaddress(state->sock->hostname) && diff --git a/source/libcli/smb_composite/fetchfile.c b/source/libcli/smb_composite/fetchfile.c index f3934a21232..893eb854f5c 100644 --- a/source/libcli/smb_composite/fetchfile.c +++ b/source/libcli/smb_composite/fetchfile.c @@ -147,6 +147,14 @@ struct composite_context *smb_composite_fetchfile_send(struct smb_composite_fetc state->connect->in.fallback_to_anonymous = false; state->connect->in.workgroup = io->in.workgroup; + state->connect->in.max_xmit = lp_max_xmit(global_loadparm); + state->connect->in.max_mux = lp_maxmux(global_loadparm); + state->connect->in.ntstatus_support = lp_nt_status_support(global_loadparm); + state->connect->in.max_protocol = lp_cli_maxprotocol(global_loadparm); + state->connect->in.unicode = lp_unicode(global_loadparm); + state->connect->in.use_spnego = lp_use_spnego(global_loadparm) && + lp_nt_status_support(global_loadparm); + state->creq = smb_composite_connect_send(state->connect, state, lp_resolve_context(global_loadparm), event_ctx); if (state->creq == NULL) goto failed; diff --git a/source/libcli/smb_composite/fsinfo.c b/source/libcli/smb_composite/fsinfo.c index 2d8240572e4..bf425ad7c8b 100644 --- a/source/libcli/smb_composite/fsinfo.c +++ b/source/libcli/smb_composite/fsinfo.c @@ -153,6 +153,14 @@ struct composite_context *smb_composite_fsinfo_send(struct smbcli_tree *tree, state->connect->in.fallback_to_anonymous = false; state->connect->in.workgroup = io->in.workgroup; + state->connect->in.max_xmit = lp_max_xmit(global_loadparm); + state->connect->in.max_mux = lp_maxmux(global_loadparm); + state->connect->in.ntstatus_support = lp_nt_status_support(global_loadparm); + state->connect->in.max_protocol = lp_cli_maxprotocol(global_loadparm); + state->connect->in.unicode = lp_unicode(global_loadparm); + state->connect->in.use_spnego = lp_use_spnego(global_loadparm) && + lp_nt_status_support(global_loadparm); + c->state = COMPOSITE_STATE_IN_PROGRESS; state->stage = FSINFO_CONNECT; c->event_ctx = talloc_reference(c, tree->session->transport->socket->event.ctx); diff --git a/source/libcli/smb_composite/smb_composite.h b/source/libcli/smb_composite/smb_composite.h index 5574495079d..41ce4b03bd7 100644 --- a/source/libcli/smb_composite/smb_composite.h +++ b/source/libcli/smb_composite/smb_composite.h @@ -91,6 +91,12 @@ struct smb_composite_connect { struct cli_credentials *credentials; bool fallback_to_anonymous; const char *workgroup; + bool use_spnego; + bool ntstatus_support; + bool unicode; + int max_xmit; + int max_mux; + int max_protocol; } in; struct { struct smbcli_tree *tree; |