From: Stefan Metzmacher Date: Tue, 9 Mar 2021 22:38:51 +0000 (+0100) Subject: libcli/smb: introduce struct struct smb311_capabilities X-Git-Tag: tevent-0.11.0~1497 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a11dab1648094982a21dbf2d306deb0e31e444fd;p=thirdparty%2Fsamba.git libcli/smb: introduce struct struct smb311_capabilities This will be filled later with supported ciphers and other things that can be negotiated in SMB >= 3.1.1. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14512 Signed-off-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- diff --git a/libcli/smb/smb2_negotiate_context.h b/libcli/smb/smb2_negotiate_context.h index 998cf90f5b8..6f7a21a1f3b 100644 --- a/libcli/smb/smb2_negotiate_context.h +++ b/libcli/smb/smb2_negotiate_context.h @@ -55,4 +55,8 @@ struct smb2_negotiate_context *smb2_negotiate_context_find(const struct smb2_neg uint16_t type); #define WINDOWS_CLIENT_PURE_SMB2_NEGPROT_INITIAL_CREDIT_ASK 31 +struct smb311_capabilities { + uint8_t dummy; +}; + #endif /* _LIBCLI_SMB_SMB2_NEGOTIATE_BLOB_H_ */