]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/User.h
Merged from trunk
[thirdparty/squid.git] / src / auth / basic / User.h
1 /*
2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef _SQUID_AUTH_BASIC_USER_H
10 #define _SQUID_AUTH_BASIC_USER_H
11
12 #include "auth/User.h"
13 #include "auth/UserRequest.h"
14
15 namespace Auth
16 {
17
18 class Config;
19 class QueueNode;
20
21 namespace Basic
22 {
23
24 /** User credentials for the Basic authentication protocol */
25 class User : public Auth::User
26 {
27 MEMPROXY_CLASS(Auth::Basic::User);
28
29 public:
30 User(Auth::Config *, const char *requestRealm);
31 ~User();
32 bool authenticated() const;
33 bool valid() const;
34
35 /** Update the cached password for a username. */
36 void updateCached(User *from);
37 virtual int32_t ttl() const;
38
39 char *passwd;
40
41 QueueNode *queue;
42
43 private:
44 Auth::UserRequest::Pointer currentRequest;
45 };
46
47 } // namespace Basic
48 } // namespace Auth
49
50 #endif /* _SQUID_AUTH_BASIC_USER_H */
51