/* * 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_AUTH_NEGOTIATE_USER_H #define _SQUID_AUTH_NEGOTIATE_USER_H #if HAVE_AUTH_MODULE_NEGOTIATE #include "auth/User.h" namespace Auth { class SchemeConfig; namespace Negotiate { /** User credentials for the Negotiate authentication protocol */ class User : public Auth::User { MEMPROXY_CLASS(Auth::Negotiate::User); public: User(Auth::SchemeConfig *, const char *requestRealm); virtual ~User(); virtual int32_t ttl() const override; /* Auth::User API */ static CbcPointer Cache(); virtual void addToNameCache() override; dlink_list proxy_auth_list; }; } // namespace Negotiate } // namespace Auth #endif /* HAVE_AUTH_MODULE_NEGOTIATE */ #endif /* _SQUID_AUTH_NEGOTIATE_USER_H */