diff options
author | Michael Adam <obnox@samba.org> | 2012-03-01 00:59:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-03-03 17:03:06 +0100 |
commit | 6f860837e59a65eef82550944c8caca67ef7ff45 (patch) | |
tree | 94672a1d1eb163059614b9dcdeaad4ae222b2556 /libcli | |
parent | 8c5d288ecf1c7ff1badba046f52038b91fa7adc0 (diff) | |
download | samba-6f860837e59a65eef82550944c8caca67ef7ff45.tar.gz |
libcli:smb: upgrade SMB2_CAP_ALL to include the newly known caps
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/smb/smb2_constants.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libcli/smb/smb2_constants.h b/libcli/smb/smb2_constants.h index 9408be391b9..eaf1958ac40 100644 --- a/libcli/smb/smb2_constants.h +++ b/libcli/smb/smb2_constants.h @@ -94,7 +94,14 @@ #define SMB2_CAP_ENCRYPTION 0x00000040 /* only in dialect >= 0x222 */ /* so we can spot new caps as added */ -#define SMB2_CAP_ALL SMB2_CAP_DFS +#define SMB2_CAP_ALL (\ + SMB2_CAP_DFS | \ + SMB2_CAP_LEASING | \ + SMB2_CAP_LARGE_MTU | \ + SMB2_CAP_MULTI_CHANNEL | \ + SMB2_CAP_PERSISTENT_HANDLES | \ + SMB2_CAP_ENCRYPTION) + /* SMB2 session flags */ #define SMB2_SESSION_FLAG_IS_GUEST 0x0001 |