aboutsummaryrefslogtreecommitdiffstats
path: root/src/libipsec/ipsec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libipsec/ipsec.h')
-rw-r--r--src/libipsec/ipsec.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/libipsec/ipsec.h b/src/libipsec/ipsec.h
index 80bef5426..e4055a8bd 100644
--- a/src/libipsec/ipsec.h
+++ b/src/libipsec/ipsec.h
@@ -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;
+
};
/**