~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to src/AuthReg.cc

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

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