diff options
author | Clavister OpenSource <opensource@clavister.com> | 2011-12-01 14:08:24 +0100 |
---|---|---|
committer | Clavister OpenSource <opensource@clavister.com> | 2012-03-20 17:31:11 +0100 |
commit | 9c5366446a335ca5b53ca3b8813a971ba2b01080 (patch) | |
tree | ec0813ef43377f18751dd36f4399b78795b57229 /src/libcharon/daemon.c | |
parent | 781f4c88988f23f5a6f155a59076b37164c954c9 (diff) | |
download | strongswan-9c5366446a335ca5b53ca3b8813a971ba2b01080.tar.bz2 strongswan-9c5366446a335ca5b53ca3b8813a971ba2b01080.tar.xz |
IKEv1 XAuth: Added plugin support for XAuth, which allows us to have plugins to talk to servers with different quirks for XAuth authentication.
Diffstat (limited to 'src/libcharon/daemon.c')
-rw-r--r-- | src/libcharon/daemon.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcharon/daemon.c b/src/libcharon/daemon.c index 9b6af22bb..343063be5 100644 --- a/src/libcharon/daemon.c +++ b/src/libcharon/daemon.c @@ -122,6 +122,7 @@ static void destroy(private_daemon_t *this) DESTROY_IF(this->public.ike_sa_manager); DESTROY_IF(this->public.controller); DESTROY_IF(this->public.eap); + DESTROY_IF(this->public.xauth); #ifdef ME DESTROY_IF(this->public.connect_manager); DESTROY_IF(this->public.mediation_manager); @@ -291,6 +292,7 @@ private_daemon_t *daemon_create() charon = &this->public; this->public.controller = controller_create(); this->public.eap = eap_manager_create(); + this->public.xauth = xauth_manager_create(); this->public.backends = backend_manager_create(); this->public.socket = socket_manager_create(); this->public.traps = trap_manager_create(); |