diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-04 14:27:45 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-04 14:27:45 +0000 |
commit | ac048a8d2ce2a197eea877af8b9fbfb4f6268832 (patch) | |
tree | 1ac560ce391619b8fc8049f70de0aa10f877b54c /src | |
parent | 59af74699c35d91eef5f3a6d8a5a73d9736de668 (diff) | |
download | strongswan-ac048a8d2ce2a197eea877af8b9fbfb4f6268832.tar.bz2 strongswan-ac048a8d2ce2a197eea877af8b9fbfb4f6268832.tar.xz |
load and unload XAUTH module
Diffstat (limited to 'src')
-rw-r--r-- | src/pluto/plutomain.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pluto/plutomain.c b/src/pluto/plutomain.c index 5d6e7aadf..4a4f30acf 100644 --- a/src/pluto/plutomain.c +++ b/src/pluto/plutomain.c @@ -599,6 +599,7 @@ main(int argc, char **argv) init_nat_traversal(nat_traversal, keep_alive, force_keepalive, nat_t_spf); init_virtual_ip(virtual_private); scx_init(pkcs11_module_path); /* load and initialize PKCS #11 module */ + xauth_init(); /* load and initialize XAUTH module */ init_rnd_pool(); init_secret(); init_states(); @@ -649,6 +650,7 @@ exit_pluto(int status) free_ocsp(); /* free ocsp cache */ free_ifaces(); scx_finalize(); /* finalize and unload PKCS #11 module */ + xauth_finalize(); /* finalize and unload XAUTH module */ stop_adns(); free_md_pool(); delete_lock(); |