From: Stefan Metzmacher Date: Tue, 9 Mar 2021 22:40:40 +0000 (+0100) Subject: s4:libcli/raw: add smb3_capabilities to struct smbcli_options X-Git-Tag: tevent-0.11.0~1496 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b5140483ee463f341734b7783f08f2b95b14264;p=thirdparty%2Fsamba.git s4:libcli/raw: add smb3_capabilities to struct smbcli_options Currently this will be zeroed in lpcfg_smbcli_options(), but will later allow advanced callers to pass values to smbXcli_conn_create(). BUG: https://bugzilla.samba.org/show_bug.cgi?id=14512 Signed-off-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- diff --git a/source4/libcli/raw/libcliraw.h b/source4/libcli/raw/libcliraw.h index 0e99618df25..a4c4cf3d36e 100644 --- a/source4/libcli/raw/libcliraw.h +++ b/source4/libcli/raw/libcliraw.h @@ -26,6 +26,7 @@ #include "libcli/raw/request.h" #include "librpc/gen_ndr/nbt.h" #include "libcli/raw/interfaces.h" +#include "libcli/smb/smb2_negotiate_context.h" struct smbcli_tree; /* forward declare */ struct smbcli_request; /* forward declare */ @@ -105,6 +106,7 @@ struct smbcli_options { struct GUID client_guid; uint64_t max_credits; unsigned int only_negprot; + struct smb311_capabilities smb3_capabilities; }; /* this is the context for the client transport layer */