Init/deinit libhydra in charon and pluto.
This commit is contained in:
@@ -54,13 +54,14 @@ rsaref/pkcs11t.h rsaref/pkcs11.h rsaref/unix.h rsaref/pkcs11f.h
|
||||
_pluto_adns_SOURCES = adns.c adns.h
|
||||
|
||||
LIBSTRONGSWANDIR=$(top_builddir)/src/libstrongswan
|
||||
LIBHYDRADIR=$(top_builddir)/src/libhydra
|
||||
LIBFREESWANDIR=$(top_builddir)/src/libfreeswan
|
||||
LIBHYDRADIR=$(top_builddir)/src/libhydra
|
||||
|
||||
INCLUDES = \
|
||||
-I${linux_headers} \
|
||||
-I$(top_srcdir)/src/libstrongswan \
|
||||
-I$(top_srcdir)/src/libfreeswan \
|
||||
-I$(top_srcdir)/src/libhydra \
|
||||
-I$(top_srcdir)/src/whack
|
||||
|
||||
AM_CFLAGS = \
|
||||
@@ -75,8 +76,8 @@ AM_CFLAGS = \
|
||||
|
||||
pluto_LDADD = \
|
||||
$(LIBSTRONGSWANDIR)/libstrongswan.la \
|
||||
$(LIBHYDRADIR)/libhydra.la \
|
||||
$(LIBFREESWANDIR)/libfreeswan.a \
|
||||
$(LIBHYDRADIR)/libhydra.la \
|
||||
-lresolv $(PTHREADLIB) $(DLLIB)
|
||||
|
||||
_pluto_adns_LDADD = \
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
|
||||
#include <freeswan.h>
|
||||
|
||||
#include <hydra.h>
|
||||
#include <library.h>
|
||||
#include <debug.h>
|
||||
#include <utils/enumerator.h>
|
||||
@@ -273,6 +274,12 @@ int main(int argc, char **argv)
|
||||
library_deinit();
|
||||
exit(SS_RC_DAEMON_INTEGRITY);
|
||||
}
|
||||
if (!libhydra_init())
|
||||
{
|
||||
libhydra_deinit();
|
||||
library_deinit();
|
||||
exit(SS_RC_INITIALIZATION_FAILED);
|
||||
}
|
||||
options = options_create();
|
||||
|
||||
/* handle arguments */
|
||||
@@ -648,6 +655,7 @@ int main(int argc, char **argv)
|
||||
{
|
||||
plog("integrity tests enabled:");
|
||||
plog("lib 'libstrongswan': passed file and segment integrity tests");
|
||||
plog("lib 'libhydra': passed file and segment integrity tests");
|
||||
plog("daemon 'pluto': passed file integrity test");
|
||||
}
|
||||
|
||||
@@ -770,6 +778,7 @@ void exit_pluto(int status)
|
||||
free_builder();
|
||||
delete_lock();
|
||||
options->destroy(options);
|
||||
libhydra_deinit();
|
||||
library_deinit();
|
||||
close_log();
|
||||
exit(status);
|
||||
|
||||
Reference in New Issue
Block a user