include paths changed
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include "delete_ike_sa_job.h"
|
#include "delete_ike_sa_job.h"
|
||||||
|
|
||||||
#include "../utils/allocator.h"
|
#include <utils/allocator.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Private data of an delete_ike_sa_job_t Object
|
* Private data of an delete_ike_sa_job_t Object
|
||||||
|
|||||||
@@ -23,9 +23,9 @@
|
|||||||
#ifndef DELETE_IKE_SA_JOB_H_
|
#ifndef DELETE_IKE_SA_JOB_H_
|
||||||
#define DELETE_IKE_SA_JOB_H_
|
#define DELETE_IKE_SA_JOB_H_
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../ike_sa_id.h"
|
#include <ike_sa_id.h>
|
||||||
#include "job.h"
|
#include <jobs/job.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "incoming_packet_job.h"
|
#include "incoming_packet_job.h"
|
||||||
|
|
||||||
#include "../utils/allocator.h"
|
#include <utils/allocator.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Private data of an incoming_packet_job_t Object
|
* Private data of an incoming_packet_job_t Object
|
||||||
|
|||||||
@@ -23,9 +23,9 @@
|
|||||||
#ifndef INCOMING_PACKET_JOB_H_
|
#ifndef INCOMING_PACKET_JOB_H_
|
||||||
#define INCOMING_PACKET_JOB_H_
|
#define INCOMING_PACKET_JOB_H_
|
||||||
|
|
||||||
#include "job.h"
|
#include <jobs/job.h>
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../packet.h"
|
#include <packet.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Object representing an INCOMING_PACKET Job
|
* Object representing an INCOMING_PACKET Job
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
#include "initiate_ike_sa_job.h"
|
#include "initiate_ike_sa_job.h"
|
||||||
|
|
||||||
#include "../utils/allocator.h"
|
#include <utils/allocator.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Private data of an initiate_ike_sa_job_t Object
|
* Private data of an initiate_ike_sa_job_t Object
|
||||||
|
|||||||
@@ -23,8 +23,8 @@
|
|||||||
#ifndef INITIATE_IKE_SA_JOB_H_
|
#ifndef INITIATE_IKE_SA_JOB_H_
|
||||||
#define INITIATE_IKE_SA_JOB_H_
|
#define INITIATE_IKE_SA_JOB_H_
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "job.h"
|
#include <jobs/job.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Object representing an INITIATE_IKE_SA Job
|
* Object representing an INITIATE_IKE_SA Job
|
||||||
|
|||||||
@@ -23,8 +23,8 @@
|
|||||||
#ifndef JOB_H_
|
#ifndef JOB_H_
|
||||||
#define JOB_H_
|
#define JOB_H_
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../definitions.h"
|
#include <definitions.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Type of Jobs in Job-Queue
|
* Type of Jobs in Job-Queue
|
||||||
|
|||||||
@@ -25,9 +25,9 @@
|
|||||||
|
|
||||||
#include "event_queue.h"
|
#include "event_queue.h"
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../utils/allocator.h"
|
#include <utils/allocator.h>
|
||||||
#include "../utils/linked_list.h"
|
#include <utils/linked_list.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -25,8 +25,8 @@
|
|||||||
|
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../jobs/job.h"
|
#include <jobs/job.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Event-Queue used to store timed events.
|
* @brief Event-Queue used to store timed events.
|
||||||
|
|||||||
@@ -25,8 +25,8 @@
|
|||||||
|
|
||||||
#include "job_queue.h"
|
#include "job_queue.h"
|
||||||
|
|
||||||
#include "../utils/allocator.h"
|
#include <utils/allocator.h>
|
||||||
#include "../utils/linked_list.h"
|
#include <utils/linked_list.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Private Variables and Functions of job_queue class
|
* @brief Private Variables and Functions of job_queue class
|
||||||
|
|||||||
@@ -23,8 +23,8 @@
|
|||||||
#ifndef JOB_QUEUE_H_
|
#ifndef JOB_QUEUE_H_
|
||||||
#define JOB_QUEUE_H_
|
#define JOB_QUEUE_H_
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../jobs/job.h"
|
#include <jobs/job.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Job-Queue
|
* @brief Job-Queue
|
||||||
|
|||||||
@@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include "send_queue.h"
|
#include "send_queue.h"
|
||||||
|
|
||||||
#include "../utils/allocator.h"
|
#include <utils/allocator.h>
|
||||||
#include "../utils/linked_list.h"
|
#include <utils/linked_list.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Private Variables and Functions of send_queue class
|
* @brief Private Variables and Functions of send_queue class
|
||||||
|
|||||||
@@ -23,8 +23,8 @@
|
|||||||
#ifndef SEND_QUEUE_H_
|
#ifndef SEND_QUEUE_H_
|
||||||
#define SEND_QUEUE_H_
|
#define SEND_QUEUE_H_
|
||||||
|
|
||||||
#include "../types.h"
|
#include <types.h>
|
||||||
#include "../packet.h"
|
#include <packet.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Send-Queue
|
* @brief Send-Queue
|
||||||
|
|||||||
Reference in New Issue
Block a user