/* * Copyright (C) 1996-2023 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ #ifndef _SQUID_SRC_AUTH_NTLM_USERREQUEST_H #define _SQUID_SRC_AUTH_NTLM_USERREQUEST_H #if HAVE_AUTH_MODULE_NTLM #include "auth/UserRequest.h" #include "helper/forward.h" #include "helper/ReservationId.h" class ConnStateData; class HttpReply; class HttpRequest; namespace Auth { namespace Ntlm { class UserRequest : public Auth::UserRequest { MEMPROXY_CLASS(Auth::Ntlm::UserRequest); public: UserRequest(); virtual ~UserRequest(); virtual int authenticated() const; virtual void authenticate(HttpRequest * request, ConnStateData * conn, Http::HdrType type); virtual Auth::Direction module_direction(); virtual void startHelperLookup(HttpRequest *req, AccessLogEntry::Pointer &al, AUTHCB *, void *); virtual const char *credentialsStr(); virtual const char * connLastHeader(); virtual void releaseAuthServer(); ///< Release authserver NTLM helpers properly when finished or abandoning. /* our current blob to pass to the client */ char *server_blob; /* our current blob to pass to the server */ char *client_blob; /* currently waiting for helper response */ unsigned char waiting; /* need access to the request flags to mess around on pconn failure */ HttpRequest *request; /// a helper-issued reservation locking the helper state between /// HTTP requests Helper::ReservationId reservationId; private: static HLPCB HandleReply; }; } // namespace Ntlm } // namespace Auth #endif /* HAVE_AUTH_MODULE_NTLM */ #endif /* _SQUID_SRC_AUTH_NTLM_USERREQUEST_H */