the ntlm/negotiate scheme reqrite was a bit confused about the FINISHED
vs DONE states, skipping a little of the processing required for the
user and ip caches.
/*
- * $Id: auth_negotiate.cc,v 1.11 2006/09/03 04:12:01 hno Exp $
+ * $Id: auth_negotiate.cc,v 1.12 2007/01/03 12:39:48 hno Exp $
*
* DEBUG: section 29 Negotiate Authenticator
* AUTHOR: Robert Collins, Henrik Nordstrom, Francesco Chemolli
int
AuthNegotiateUserRequest::authenticated() const
{
- if (auth_state == AUTHENTICATE_STATE_FINISHED) {
+ if (auth_state == AUTHENTICATE_STATE_DONE) {
debug(29, 9) ("AuthNegotiateUserRequest::authenticated: user authenticated.\n");
return 1;
}
/*
- * $Id: auth_ntlm.cc,v 1.60 2006/09/03 04:12:02 hno Exp $
+ * $Id: auth_ntlm.cc,v 1.61 2007/01/03 12:39:49 hno Exp $
*
* DEBUG: section 29 NTLM Authenticator
* AUTHOR: Robert Collins, Henrik Nordstrom, Francesco Chemolli
int
AuthNTLMUserRequest::authenticated() const
{
- if (auth_state == AUTHENTICATE_STATE_FINISHED) {
+ if (auth_state == AUTHENTICATE_STATE_DONE) {
debug(29, 9) ("AuthNTLMUserRequest::authenticated: user authenticated.\n");
return 1;
}