Navigation Menu

Skip to content

Commit

Permalink
No longer used
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Oct 23, 2015
1 parent ff2e355 commit c42a787
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
7 changes: 0 additions & 7 deletions raddb/mods-available/eap
Expand Up @@ -29,13 +29,6 @@ eap {
#
default_eap_type = md5

# A list is maintained to correlate EAP-Response
# packets with EAP-Request packets. After a
# configurable length of time, entries in the list
# expire, and are deleted.
#
timer_expire = 60

# There are many EAP types, but the server has support
# for only a limited subset. If the server receives
# a request for an EAP type it does not support, then
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_eap/rlm_eap.c
Expand Up @@ -32,7 +32,7 @@ RCSID("$Id$")

static const CONF_PARSER module_config[] = {
{ FR_CONF_OFFSET("default_eap_type", PW_TYPE_STRING, rlm_eap_t, default_method_name), .dflt = "md5" },
{ FR_CONF_OFFSET("timer_expire", PW_TYPE_INTEGER, rlm_eap_t, timer_limit), .dflt = "60" },
{ FR_CONF_DEPRECATED("timer_expire", PW_TYPE_INTEGER, rlm_eap_t, timer_limit), .dflt = "60" },
{ FR_CONF_OFFSET("ignore_unknown_eap_types", PW_TYPE_BOOLEAN, rlm_eap_t, ignore_unknown_types), .dflt = "no" },
{ FR_CONF_OFFSET("cisco_accounting_username_bug", PW_TYPE_BOOLEAN, rlm_eap_t, mod_accounting_username_bug), .dflt = "no" },
{ FR_CONF_DEPRECATED("max_sessions", PW_TYPE_INTEGER, rlm_eap_t, max_sessions), .dflt = "2048" },
Expand Down
5 changes: 0 additions & 5 deletions src/modules/rlm_eap/rlm_eap.h
Expand Up @@ -51,11 +51,6 @@ typedef struct eap_module {
typedef struct rlm_eap {
eap_module_t *methods[PW_EAP_MAX_TYPES];

/*
* Configuration items.
*/
uint32_t timer_limit;

char const *default_method_name;
eap_type_t default_method;

Expand Down

0 comments on commit c42a787

Please sign in to comment.