diff options
author | Zach Loafman <zachary.loafman@isilon.com> | 2009-03-12 08:32:58 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-03-17 13:43:27 -0700 |
commit | 6c08e329fa9396474b200fe7593d4a5c2082930a (patch) | |
tree | 8a5cb3514fadf57fa1c8da0123b6ca5640e80ad3 /source4/libcli/smb2/smb2.h | |
parent | b29c69f45953bf099f1d4f6e6abd5726f5ac793e (diff) | |
download | samba-6c08e329fa9396474b200fe7593d4a5c2082930a.tar.gz samba-6c08e329fa9396474b200fe7593d4a5c2082930a.tar.xz samba-6c08e329fa9396474b200fe7593d4a5c2082930a.zip |
s4 libcli: Add SMB2.1 dialect to libcli
Negotiate 2.1 if possible, leave negotiate results in
transport->negotiate.dialect_revision.
Diffstat (limited to 'source4/libcli/smb2/smb2.h')
-rw-r--r-- | source4/libcli/smb2/smb2.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/libcli/smb2/smb2.h b/source4/libcli/smb2/smb2.h index d1d5b842c33..3cc3ec2f25b 100644 --- a/source4/libcli/smb2/smb2.h +++ b/source4/libcli/smb2/smb2.h @@ -35,6 +35,7 @@ struct smb2_negotiate { NTTIME system_time; NTTIME server_start_time; uint16_t security_mode; + uint16_t dialect_revision; }; /* this is the context for the smb2 transport layer */ @@ -226,8 +227,9 @@ struct smb2_request { #define SMB2_MAGIC 0x424D53FE /* 0xFE 'S' 'M' 'B' */ -/* the dialect we support */ +/* the dialects we support */ #define SMB2_DIALECT_REVISION 0x202 +#define SMB21_DIALECT_REVISION 0x210 /* SMB2 negotiate security_mode */ #define SMB2_NEGOTIATE_SIGNING_ENABLED 0x01 |