diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-07-13 13:21:45 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-08-08 15:41:03 +0200 |
commit | 914479370ed23aa420a15ef3f19c2c39dce3b133 (patch) | |
tree | 4f62f594f23065f6a8e2803732a1f8de3b8f44f2 /src/libipsec/ipsec.h | |
parent | 9f7e1899a90c2ffbdbac626d4d58945460eca97c (diff) | |
download | strongswan-914479370ed23aa420a15ef3f19c2c39dce3b133.tar.bz2 strongswan-914479370ed23aa420a15ef3f19c2c39dce3b133.tar.xz |
Added IPsec SA manager
Diffstat (limited to 'src/libipsec/ipsec.h')
-rw-r--r-- | src/libipsec/ipsec.h | 11 |
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; + }; /** |