diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-07-12 09:11:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:57:32 -0500 |
commit | 88002b851bd30e3c03a5a9442baf3ced7aa6090f (patch) | |
tree | 8547a06b7e5af9c4cb5e73f6190035aefd7fd75c /source4/include | |
parent | b62e6f1ec13c6cad5a94a2a27dc14d3fdfdd4cfc (diff) | |
download | samba-88002b851bd30e3c03a5a9442baf3ced7aa6090f.tar.gz samba-88002b851bd30e3c03a5a9442baf3ced7aa6090f.tar.bz2 samba-88002b851bd30e3c03a5a9442baf3ced7aa6090f.zip |
r1462: GENSEC Kerberos and SPENGO work:
- Spelling - it's SPNEGO, not SPENGO
- SMB signing - Krb5 logins are now correctly signed
- SPNEGO - Changes to always tell GENSEC about incoming packets, empty or not.
Andrew Bartlett
(This used to be commit cea578d6f39a2ea4a24e7a0064c95193ab6f6df7)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/cli_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/include/cli_context.h b/source4/include/cli_context.h index 930017bb26..cddc6aadf5 100644 --- a/source4/include/cli_context.h +++ b/source4/include/cli_context.h @@ -53,7 +53,11 @@ struct cli_negotiate { BOOL (*check_incoming_message)(struct cli_request *req); void (*free_signing_context)(struct cli_transport *transport); void *signing_context; + BOOL negotiated_smb_signing; + BOOL allow_smb_signing; BOOL doing_signing; + BOOL mandatory_signing; + BOOL seen_valid; /* Have I ever seen a validly signed packet? */ } sign_info; /* capabilities that the server reported */ |