aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-11-16 12:43:08 +0000
committerJan Hutter <jhutter@hsr.ch>2005-11-16 12:43:08 +0000
commit2b3183835a8ef52927be7e421dc5f87b8cbe9df2 (patch)
treeec600402da2a7052a1500128c0e082dba5f92566 /Source/charon
parent5dee5e68c59e6af8e09b08a9000df34b1a253c09 (diff)
downloadstrongswan-2b3183835a8ef52927be7e421dc5f87b8cbe9df2.tar.bz2
strongswan-2b3183835a8ef52927be7e421dc5f87b8cbe9df2.tar.xz
- job.h and job.c moved to directory jobs
Diffstat (limited to 'Source/charon')
-rw-r--r--Source/charon/jobs/job.c (renamed from Source/charon/job.c)2
-rw-r--r--Source/charon/jobs/job.h (renamed from Source/charon/job.h)4
-rw-r--r--Source/charon/queues/event_queue.h2
-rw-r--r--Source/charon/queues/job_queue.h2
-rw-r--r--Source/charon/receiver.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/Source/charon/job.c b/Source/charon/jobs/job.c
index 42f4c620c..bb125a10e 100644
--- a/Source/charon/job.c
+++ b/Source/charon/jobs/job.c
@@ -24,7 +24,7 @@
#include "job.h"
-#include "utils/allocator.h"
+#include "../utils/allocator.h"
mapping_t job_type_m[] = {
{INCOMING_PACKET, "INCOMING_PACKET"},
diff --git a/Source/charon/job.h b/Source/charon/jobs/job.h
index a2c83001c..f576cba66 100644
--- a/Source/charon/job.h
+++ b/Source/charon/jobs/job.h
@@ -23,8 +23,8 @@
#ifndef JOB_H_
#define JOB_H_
-#include "types.h"
-#include "definitions.h"
+#include "../types.h"
+#include "../definitions.h"
/**
* Type of Jobs in Job-Queue
diff --git a/Source/charon/queues/event_queue.h b/Source/charon/queues/event_queue.h
index 52e4c8153..07c038610 100644
--- a/Source/charon/queues/event_queue.h
+++ b/Source/charon/queues/event_queue.h
@@ -26,7 +26,7 @@
#include <sys/time.h>
#include "../types.h"
-#include "../job.h"
+#include "../jobs/job.h"
/**
* @brief Event-Queue used to store timed events.
diff --git a/Source/charon/queues/job_queue.h b/Source/charon/queues/job_queue.h
index c7ceacae3..1bbc07dda 100644
--- a/Source/charon/queues/job_queue.h
+++ b/Source/charon/queues/job_queue.h
@@ -24,7 +24,7 @@
#define JOB_QUEUE_H_
#include "../types.h"
-#include "../job.h"
+#include "../jobs/job.h"
/**
* @brief Job-Queue
diff --git a/Source/charon/receiver.c b/Source/charon/receiver.c
index 13b4ecc3a..a45a900ba 100644
--- a/Source/charon/receiver.c
+++ b/Source/charon/receiver.c
@@ -25,7 +25,7 @@
#include "receiver.h"
-#include "job.h"
+#include "jobs/job.h"
#include "socket.h"
#include "packet.h"
#include "globals.h"