diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-12-16 12:31:41 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-12-16 12:31:41 +0100 |
commit | a461e20dd89988f3d619e9019ba1712e80d36211 (patch) | |
tree | 79a84b3cdeee6062250c814fc6556bdb4d452ba9 /testing/hosts | |
parent | b75002bc955e7a1489c5c2dd75f452ca057b9b1b (diff) | |
download | strongswan-a461e20dd89988f3d619e9019ba1712e80d36211.tar.bz2 strongswan-a461e20dd89988f3d619e9019ba1712e80d36211.tar.xz |
provide attributes from SQL database
Diffstat (limited to 'testing/hosts')
-rw-r--r-- | testing/hosts/default/etc/ipsec.d/tables.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testing/hosts/default/etc/ipsec.d/tables.sql b/testing/hosts/default/etc/ipsec.d/tables.sql index 269709542..a7c5f1d81 100644 --- a/testing/hosts/default/etc/ipsec.d/tables.sql +++ b/testing/hosts/default/etc/ipsec.d/tables.sql @@ -183,6 +183,13 @@ CREATE TABLE leases ( released INTEGER NOT NULL ); +DROP TABLE IF EXISTS attributes; +CREATE TABLE attributes ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + type INTEGER NOT NULL, + value BLOB NOT NULL +); + DROP TABLE IF EXISTS ike_sas; CREATE TABLE ike_sas ( local_spi BLOB NOT NULL PRIMARY KEY, |