blob: 73099194fa5709d5d509af1e80576b76fec0c23c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* Copyright 2006-2015 The FreeRADIUS server project */
#ifndef _RLM_MSCHAP_H
#define _RLM_MSCHAP_H
RCSIDH(rlm_mschap_h, "$Id$")
#include "config.h"
#ifdef HAVE_WDOCUMENTATION
DIAG_OFF(documentation)
#endif
#ifdef WITH_AUTH_WINBIND
# include <wbclient.h>
#endif
#ifdef HAVE_WDOCUMENTATION
DIAG_ON(documentation)
#endif
/* Method of authentication we are going to use */
typedef enum {
AUTH_INTERNAL = 0,
AUTH_NTLMAUTH_EXEC = 1
#ifdef WITH_AUTH_WINBIND
,AUTH_WBCLIENT = 2
#endif
} MSCHAP_AUTH_METHOD;
typedef struct rlm_mschap_t {
bool use_mppe;
bool require_encryption;
bool require_strong;
bool with_ntdomain_hack; /* this should be in another module */
char const *xlat_name;
char const *ntlm_auth;
uint32_t ntlm_auth_timeout;
char const *ntlm_cpw;
char const *ntlm_cpw_username;
char const *ntlm_cpw_domain;
char const *local_cpw;
char const *auth_type;
bool allow_retry;
char const *retry_msg;
MSCHAP_AUTH_METHOD method;
vp_tmpl_t *wb_username;
vp_tmpl_t *wb_domain;
fr_connection_pool_t *wb_pool;
bool wb_retry_with_normalised_username;
#ifdef __APPLE__
bool open_directory;
#endif
} rlm_mschap_t;
#endif
|