Added IPsec SA manager

This commit is contained in:
Tobias Brunner
2012-08-08 15:41:03 +02:00
parent 9f7e1899a9
commit 914479370e
6 changed files with 458 additions and 7 deletions
+10 -1
View File
@@ -1,4 +1,6 @@
/*
* Copyright (C) 2012 Giuliano Grassi
* Copyright (C) 2012 Ralf Sager
* Copyright (C) 2012 Tobias Brunner
* Hochschule fuer Technik Rapperswil
*
@@ -23,15 +25,22 @@
#ifndef IPSEC_H_
#define IPSEC_H_
typedef struct ipsec_t ipsec_t;
#include "ipsec_sa_mgr.h"
#include <library.h>
typedef struct ipsec_t ipsec_t;
/**
* User space IPsec implementation.
*/
struct ipsec_t {
/**
* IPsec SA manager instance
*/
ipsec_sa_mgr_t *sas;
};
/**