diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-11 13:31:52 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-11 13:31:52 +0000 |
commit | b85d20d117ec19eaaef9fdab7f078b89ea2de242 (patch) | |
tree | 0186ed315b9a7c8e84e9ca5108b46bcb5de54730 /Source/charon/tester.c | |
parent | 566bbcd122a2330e2d23075e6a6a80c82f819df8 (diff) | |
download | strongswan-b85d20d117ec19eaaef9fdab7f078b89ea2de242.tar.bz2 strongswan-b85d20d117ec19eaaef9fdab7f078b89ea2de242.tar.xz |
- moved queues into subfolder queues
- created subdirectory utils for linked_list_t and co.
Diffstat (limited to 'Source/charon/tester.c')
-rw-r--r-- | Source/charon/tester.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/charon/tester.c b/Source/charon/tester.c index 938ca46bd..b3bf3f069 100644 --- a/Source/charon/tester.c +++ b/Source/charon/tester.c @@ -26,11 +26,12 @@ #include <pthread.h> #include <sys/time.h> -#include "allocator.h" #include "tester.h" -#include "linked_list.h" + +#include "allocator.h" +#include "utils/linked_list.h" #include "thread_pool.h" -#include "job_queue.h" +#include "queues/job_queue.h" /** * @brief Private Variables and Functions of tester class |