diff options
author | Gerald Carter <jerry@samba.org> | 2004-05-13 20:32:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:34 -0500 |
commit | 41db2016adc464691ea2c3497aedca55fcf004ed (patch) | |
tree | 234a0400241741534059d06798af251e13a689fd /source3/include | |
parent | 8fd6298df0c219c522e2262e16eaf97c47f3799f (diff) | |
download | samba-41db2016adc464691ea2c3497aedca55fcf004ed.tar.gz samba-41db2016adc464691ea2c3497aedca55fcf004ed.tar.bz2 samba-41db2016adc464691ea2c3497aedca55fcf004ed.zip |
r704: BUG 1315: fix for schannel client connections to server's that don't support 128 bit encryption
(This used to be commit 316ba5ad89ddfa445d44d28141c5901fc64aec90)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_dce.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/rpc_dce.h b/source3/include/rpc_dce.h index 8266fc861f..0df903109d 100644 --- a/source3/include/rpc_dce.h +++ b/source3/include/rpc_dce.h @@ -63,7 +63,9 @@ enum RPC_PKT_TYPE #define NETSEC_AUTH_TYPE 0x44 #define NETSEC_SIGN_SIGNATURE { 0x77, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00 } #define NETSEC_SEAL_SIGNATURE { 0x77, 0x00, 0x7a, 0x00, 0xff, 0xff, 0x00, 0x00 } -#define RPC_AUTH_NETSEC_CHK_LEN 0x20 + +#define RPC_AUTH_NETSEC_SIGN_OR_SEAL_CHK_LEN 0x20 +#define RPC_AUTH_NETSEC_SIGN_ONLY_CHK_LEN 0x18 /* The 7 here seems to be required to get Win2k not to downgrade us to NT4. Actually, anything other than 1ff would seem to do... */ |