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 | 969b8579c755441092e27b499ecedbd7d725816d (patch) | |
tree | 2b6ed0049c7afc7624ec81b559aad1d179a6b398 /source4/ntvfs/cifs | |
parent | 40acf23a927b7fcabad621cadabb9c7476c8d5e9 (diff) | |
download | samba-969b8579c755441092e27b499ecedbd7d725816d.tar.gz samba-969b8579c755441092e27b499ecedbd7d725816d.tar.xz samba-969b8579c755441092e27b499ecedbd7d725816d.zip |
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)
Diffstat (limited to 'source4/ntvfs/cifs')
-rw-r--r-- | source4/ntvfs/cifs/vfs_cifs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c index adfea6d2a28..0b4cbb8a130 100644 --- a/source4/ntvfs/cifs/vfs_cifs.c +++ b/source4/ntvfs/cifs/vfs_cifs.c @@ -202,6 +202,12 @@ static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, io.in.workgroup = lp_workgroup(ntvfs->ctx->lp_ctx); io.in.service = remote_share; io.in.service_type = "?????"; + io.in.max_xmit = lp_max_xmit(ntvfs->ctx->lp_ctx); + io.in.max_mux = lp_maxmux(ntvfs->ctx->lp_ctx); + io.in.ntstatus_support = lp_nt_status_support(ntvfs->ctx->lp_ctx); + io.in.max_protocol = lp_cli_maxprotocol(ntvfs->ctx->lp_ctx); + io.in.unicode = lp_unicode(ntvfs->ctx->lp_ctx); + io.in.use_spnego = lp_use_spnego(ntvfs->ctx->lp_ctx) && lp_nt_status_support(ntvfs->ctx->lp_ctx); creq = smb_composite_connect_send(&io, private, lp_resolve_context(ntvfs->ctx->lp_ctx), |