From 969b8579c755441092e27b499ecedbd7d725816d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 2 Jan 2008 18:39:15 -0600 Subject: 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. (This used to be commit 0ef75e4e3cb0e1bd10e367a00f5e9b725587c40a) --- source4/librpc/rpc/dcerpc_connect.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source4/librpc') diff --git a/source4/librpc/rpc/dcerpc_connect.c b/source4/librpc/rpc/dcerpc_connect.c index 4c11a56272..26bccbbad7 100644 --- a/source4/librpc/rpc/dcerpc_connect.c +++ b/source4/librpc/rpc/dcerpc_connect.c @@ -119,6 +119,13 @@ static struct composite_context *dcerpc_pipe_connect_ncacn_np_smb_send(TALLOC_CT conn->in.service_type = NULL; conn->in.workgroup = lp_workgroup(lp_ctx); + conn->in.max_xmit = lp_max_xmit(lp_ctx); + conn->in.max_mux = lp_maxmux(lp_ctx); + conn->in.ntstatus_support = lp_nt_status_support(lp_ctx); + conn->in.max_protocol = lp_cli_maxprotocol(lp_ctx); + conn->in.unicode = lp_unicode(lp_ctx); + conn->in.use_spnego = lp_use_spnego(lp_ctx) && lp_nt_status_support(lp_ctx); + /* * provide proper credentials - user supplied, but allow a * fallback to anonymous if this is an schannel connection -- cgit