~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to src/AuthReg.cc

  • Committer: Christos Tsantilas
  • Date: 2009-04-11 09:00:59 UTC
  • mfrom: (9294.1.333 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090411090059-8n47p1kyy1cqfqkn
MergeĀ FromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "squid.h"
 
2
 
 
3
 
 
4
#ifdef HAVE_AUTH_MODULE_BASIC
 
5
#include "auth/basic/basicScheme.h"
 
6
#endif
 
7
 
 
8
#ifdef HAVE_AUTH_MODULE_NTLM
 
9
#include "auth/ntlm/ntlmScheme.h"
 
10
#endif
 
11
 
 
12
#ifdef HAVE_AUTH_MODULE_DIGEST
 
13
#include "auth/digest/digestScheme.h"
 
14
#endif
 
15
 
 
16
#ifdef HAVE_AUTH_MODULE_NEGOTIATE
 
17
#include "auth/negotiate/negotiateScheme.h"
 
18
#endif
 
19
 
 
20
#ifdef HAVE_AUTH_MODULE_BASIC
 
21
static const char *basic_type = basicScheme::GetInstance().type();
 
22
#endif
 
23
 
 
24
#ifdef HAVE_AUTH_MODULE_NTLM
 
25
static const char *ntlm_type = ntlmScheme::GetInstance().type();
 
26
#endif
 
27
 
 
28
#ifdef HAVE_AUTH_MODULE_DIGEST
 
29
static const char *digest_type = digestScheme::GetInstance().type();
 
30
#endif
 
31
 
 
32
#ifdef HAVE_AUTH_MODULE_NEGOTIATE
 
33
static const char *negotiate_type = negotiateScheme::GetInstance().type();
 
34
#endif
 
35