diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-10-16 14:54:16 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-10-24 16:00:49 +0200 |
commit | 12642a68314a400ee2ed8b0c4474287957696ef0 (patch) | |
tree | cd7ea721666a5491967d4ff86f2760bd2fc9bf49 /src/libhydra/attributes | |
parent | fdee6b5f5a7d711d68a77088b1e757fb6452bdee (diff) | |
download | strongswan-12642a68314a400ee2ed8b0c4474287957696ef0.tar.bz2 strongswan-12642a68314a400ee2ed8b0c4474287957696ef0.tar.xz |
Moved data structures to new collections subfolder
Diffstat (limited to 'src/libhydra/attributes')
-rw-r--r-- | src/libhydra/attributes/attribute_handler.h | 2 | ||||
-rw-r--r-- | src/libhydra/attributes/attribute_manager.c | 2 | ||||
-rw-r--r-- | src/libhydra/attributes/attribute_provider.h | 2 | ||||
-rw-r--r-- | src/libhydra/attributes/mem_pool.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/libhydra/attributes/attribute_handler.h b/src/libhydra/attributes/attribute_handler.h index 6014ef0fa..91fa4e5b0 100644 --- a/src/libhydra/attributes/attribute_handler.h +++ b/src/libhydra/attributes/attribute_handler.h @@ -23,7 +23,7 @@ #include <chunk.h> #include <utils/identification.h> -#include <utils/linked_list.h> +#include <collections/linked_list.h> #include "attributes.h" diff --git a/src/libhydra/attributes/attribute_manager.c b/src/libhydra/attributes/attribute_manager.c index 000d2e082..dd3963b7f 100644 --- a/src/libhydra/attributes/attribute_manager.c +++ b/src/libhydra/attributes/attribute_manager.c @@ -16,7 +16,7 @@ #include "attribute_manager.h" #include <debug.h> -#include <utils/linked_list.h> +#include <collections/linked_list.h> #include <threading/rwlock.h> typedef struct private_attribute_manager_t private_attribute_manager_t; diff --git a/src/libhydra/attributes/attribute_provider.h b/src/libhydra/attributes/attribute_provider.h index 82d0ee3c2..adfd4a516 100644 --- a/src/libhydra/attributes/attribute_provider.h +++ b/src/libhydra/attributes/attribute_provider.h @@ -23,7 +23,7 @@ #include <networking/host.h> #include <utils/identification.h> -#include <utils/linked_list.h> +#include <collections/linked_list.h> typedef struct attribute_provider_t attribute_provider_t; diff --git a/src/libhydra/attributes/mem_pool.c b/src/libhydra/attributes/mem_pool.c index 1e150c794..1c5ea53de 100644 --- a/src/libhydra/attributes/mem_pool.c +++ b/src/libhydra/attributes/mem_pool.c @@ -17,8 +17,8 @@ #include "mem_pool.h" #include <debug.h> -#include <utils/hashtable.h> -#include <utils/linked_list.h> +#include <collections/hashtable.h> +#include <collections/linked_list.h> #include <threading/mutex.h> #define POOL_LIMIT (sizeof(uintptr_t)*8) |