Moved eap/xauth classes out of protocol specific subdirectories

This commit is contained in:
Martin Willi 2011-12-19 15:22:50 +01:00
parent 3b08de850a
commit 326a94232d
29 changed files with 27 additions and 27 deletions

View File

@ -57,6 +57,10 @@ processing/jobs/start_action_job.c processing/jobs/start_action_job.h \
processing/jobs/roam_job.c processing/jobs/roam_job.h \
processing/jobs/update_sa_job.c processing/jobs/update_sa_job.h \
processing/jobs/inactivity_job.c processing/jobs/inactivity_job.h \
sa/eap/eap_method.c sa/eap/eap_method.h \
sa/eap/eap_manager.c sa/eap/eap_manager.h \
sa/xauth/xauth_method.c sa/xauth/xauth_method.h \
sa/xauth/xauth_manager.c sa/xauth/xauth_manager.h \
sa/authenticator.c sa/authenticator.h \
sa/child_sa.c sa/child_sa.h \
sa/ike_sa.c sa/ike_sa.h \
@ -70,8 +74,6 @@ sa/task.c sa/task.h \
sa/ikev2/keymat_v2.c sa/ikev2/keymat_v2.h \
sa/ikev2/task_manager_v2.c sa/ikev2/task_manager_v2.h \
sa/ikev2/authenticators/eap_authenticator.c sa/ikev2/authenticators/eap_authenticator.h \
sa/ikev2/authenticators/eap/eap_method.c sa/ikev2/authenticators/eap/eap_method.h \
sa/ikev2/authenticators/eap/eap_manager.c sa/ikev2/authenticators/eap/eap_manager.h \
sa/ikev2/authenticators/psk_authenticator.c sa/ikev2/authenticators/psk_authenticator.h \
sa/ikev2/authenticators/pubkey_authenticator.c sa/ikev2/authenticators/pubkey_authenticator.h \
sa/ikev2/tasks/child_create.c sa/ikev2/tasks/child_create.h \
@ -95,8 +97,6 @@ sa/ikev1/task_manager_v1.c sa/ikev1/task_manager_v1.h \
sa/ikev1/authenticators/psk_v1_authenticator.c sa/ikev1/authenticators/psk_v1_authenticator.h \
sa/ikev1/authenticators/pubkey_v1_authenticator.c sa/ikev1/authenticators/pubkey_v1_authenticator.h \
sa/ikev1/authenticators/hybrid_authenticator.c sa/ikev1/authenticators/hybrid_authenticator.h \
sa/ikev1/authenticators/xauth/xauth_method.c sa/ikev1/authenticators/xauth/xauth_method.h \
sa/ikev1/authenticators/xauth/xauth_manager.c sa/ikev1/authenticators/xauth/xauth_manager.h \
sa/ikev1/tasks/main_mode.c sa/ikev1/tasks/main_mode.h \
sa/ikev1/tasks/informational.c sa/ikev1/tasks/informational.h \
sa/ikev1/tasks/isakmp_cert_pre.c sa/ikev1/tasks/isakmp_cert_pre.h \

View File

@ -148,8 +148,8 @@ typedef struct daemon_t daemon_t;
#include <sa/trap_manager.h>
#include <sa/shunt_manager.h>
#include <config/backend_manager.h>
#include <sa/ikev2/authenticators/eap/eap_manager.h>
#include <sa/ikev1/authenticators/xauth/xauth_manager.h>
#include <sa/eap/eap_manager.h>
#include <sa/xauth/xauth_manager.h>
#ifdef ME
#include <sa/ikev2/connect_manager.h>

View File

@ -23,7 +23,7 @@
typedef struct eap_aka_peer_t eap_aka_peer_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* EAP-AKA peer implementation.

View File

@ -23,7 +23,7 @@
typedef struct eap_aka_server_t eap_aka_server_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* EAP-AKA server implementation.

View File

@ -23,7 +23,7 @@
typedef struct eap_gtc_t eap_gtc_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of the eap_method_t interface using EAP-GTC.

View File

@ -23,7 +23,7 @@
typedef struct eap_identity_t eap_identity_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of the eap_method_t interface using EAP Identity.

View File

@ -23,7 +23,7 @@
typedef struct eap_md5_t eap_md5_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of the eap_method_t interface using EAP-MD5 (CHAP).

View File

@ -23,7 +23,7 @@
typedef struct eap_mschapv2_t eap_mschapv2_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of the eap_method_t interface using EAP-MS-CHAPv2.

View File

@ -23,7 +23,7 @@
typedef struct eap_peap_t eap_peap_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of eap_method_t using EAP-PEAP.

View File

@ -26,7 +26,7 @@ typedef struct eap_peap_peer_t eap_peap_peer_t;
#include "tls_application.h"
#include <library.h>
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* TLS application data handler as peer.

View File

@ -26,7 +26,7 @@ typedef struct eap_peap_server_t eap_peap_server_t;
#include "tls_application.h"
#include <library.h>
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* TLS application data handler as server.

View File

@ -23,7 +23,7 @@
typedef struct eap_radius_t eap_radius_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of the eap_method_t interface using a RADIUS server.

View File

@ -21,7 +21,7 @@
#ifndef EAP_SIM_PEER_H_
#define EAP_SIM_PEER_H_
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
typedef struct eap_sim_peer_t eap_sim_peer_t;

View File

@ -21,7 +21,7 @@
#ifndef EAP_SIM_SERVER_H_
#define EAP_SIM_SERVER_H_
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
typedef struct eap_sim_server_t eap_sim_server_t;

View File

@ -23,7 +23,7 @@
typedef struct eap_tls_t eap_tls_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of eap_method_t using EAP-TLS.

View File

@ -23,7 +23,7 @@
typedef struct eap_tnc_t eap_tnc_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of the eap_method_t interface using EAP-TNC.

View File

@ -23,7 +23,7 @@
typedef struct eap_ttls_t eap_ttls_t;
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
/**
* Implementation of eap_method_t using EAP-TTLS.

View File

@ -19,7 +19,7 @@
#include <debug.h>
#include <daemon.h>
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
typedef struct private_eap_ttls_peer_t private_eap_ttls_peer_t;

View File

@ -19,7 +19,7 @@
#include <debug.h>
#include <daemon.h>
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
typedef struct private_eap_ttls_server_t private_eap_ttls_server_t;

View File

@ -23,7 +23,7 @@
typedef struct xauth_generic_t xauth_generic_t;
#include <sa/ikev1/authenticators/xauth/xauth_method.h>
#include <sa/xauth/xauth_method.h>
/**
* Implementation of the xauth_method_t interface using cleartext secrets

View File

@ -21,7 +21,7 @@
#ifndef EAP_MANAGER_H_
#define EAP_MANAGER_H_
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
typedef struct eap_manager_t eap_manager_t;

View File

@ -17,7 +17,7 @@
#include <daemon.h>
#include <sa/ikev2/keymat_v2.h>
#include <sa/ikev2/authenticators/eap/eap_method.h>
#include <sa/eap/eap_method.h>
#include <encoding/payloads/auth_payload.h>
#include <encoding/payloads/eap_payload.h>

View File

@ -21,7 +21,7 @@
#ifndef XAUTH_MANAGER_H_
#define XAUTH_MANAGER_H_
#include <sa/ikev1/authenticators/xauth/xauth_method.h>
#include <sa/xauth/xauth_method.h>
typedef struct xauth_manager_t xauth_manager_t;