Use whack_attribute in pluto to provide in-memory IP address pools.

The pools are configured by setting rightsourceip in ipsec.conf to a
network in CIDR notation.
This commit is contained in:
Tobias Brunner
2010-04-06 12:47:39 +02:00
parent 89715bd790
commit bd22823358
3 changed files with 23 additions and 7 deletions
+3
View File
@@ -75,6 +75,7 @@
#include "timer.h"
#include "vendor.h"
#include "builder.h"
#include "whack_attribute.h"
static void usage(const char *mess)
{
@@ -684,6 +685,7 @@ int main(int argc, char **argv)
init_myid();
fetch_initialize();
ac_initialize();
whack_attribute_initialize();
/* drop unneeded capabilities and change UID/GID */
prctl(PR_SET_KEEPCAPS, 1);
@@ -758,6 +760,7 @@ void exit_pluto(int status)
free_preshared_secrets();
free_remembered_public_keys();
delete_every_connection();
whack_attribute_finalize(); /* free in-memory pools */
fetch_finalize(); /* stop fetching thread */
free_crl_fetch(); /* free chain of crl fetch requests */
free_ocsp_fetch(); /* free chain of ocsp fetch requests */