Moved integrity_checker_t to utils folder
This commit is contained in:
@@ -70,7 +70,7 @@ threading/mutex.h threading/condvar.h threading/spinlock.h threading/semaphore.h
|
||||
threading/rwlock.h threading/rwlock_condvar.h threading/lock_profiler.h \
|
||||
utils.h utils/identification.h utils/lexparser.h \
|
||||
utils/optionsfrom.h utils/capabilities.h utils/backtrace.h \
|
||||
utils/leak_detective.h integrity_checker.h
|
||||
utils/leak_detective.h utils/integrity_checker.h
|
||||
endif
|
||||
|
||||
library.lo : $(top_builddir)/config.status
|
||||
@@ -95,7 +95,7 @@ endif
|
||||
|
||||
if USE_INTEGRITY_TEST
|
||||
AM_CFLAGS += -DINTEGRITY_TEST
|
||||
libstrongswan_la_SOURCES += integrity_checker.c
|
||||
libstrongswan_la_SOURCES += utils/integrity_checker.c
|
||||
endif
|
||||
|
||||
if USE_VSTR
|
||||
|
||||
@@ -84,7 +84,6 @@
|
||||
#include "utils.h"
|
||||
#include "chunk.h"
|
||||
#include "settings.h"
|
||||
#include "integrity_checker.h"
|
||||
#include "networking/host_resolver.h"
|
||||
#include "processing/processor.h"
|
||||
#include "processing/scheduler.h"
|
||||
@@ -95,6 +94,7 @@
|
||||
#include "credentials/credential_factory.h"
|
||||
#include "credentials/credential_manager.h"
|
||||
#include "credentials/cred_encoding.h"
|
||||
#include "utils/integrity_checker.h"
|
||||
#include "utils/leak_detective.h"
|
||||
#include "plugins/plugin_loader.h"
|
||||
|
||||
|
||||
@@ -24,10 +24,10 @@
|
||||
|
||||
#include <debug.h>
|
||||
#include <library.h>
|
||||
#include <integrity_checker.h>
|
||||
#include <collections/hashtable.h>
|
||||
#include <collections/linked_list.h>
|
||||
#include <plugins/plugin.h>
|
||||
#include <utils/integrity_checker.h>
|
||||
|
||||
typedef struct private_plugin_loader_t private_plugin_loader_t;
|
||||
typedef struct plugin_entry_t plugin_entry_t;
|
||||
|
||||
@@ -15,13 +15,13 @@
|
||||
|
||||
/**
|
||||
* @defgroup integrity_checker integrity_checker
|
||||
* @{ @ingroup libstrongswan
|
||||
* @{ @ingroup utils
|
||||
*/
|
||||
|
||||
#ifndef INTEGRITY_CHECKER_H_
|
||||
#define INTEGRITY_CHECKER_H_
|
||||
|
||||
#include "utils.h"
|
||||
#include "../utils.h"
|
||||
|
||||
typedef struct integrity_checker_t integrity_checker_t;
|
||||
typedef struct integrity_checksum_t integrity_checksum_t;
|
||||
Reference in New Issue
Block a user