aboutsummaryrefslogtreecommitdiffstats
path: root/testing/hosts/default
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-11-30 17:38:49 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-11-30 17:38:49 +0100
commitcbdcca7fd7b74676766272394d8ad6c6b65f8155 (patch)
treebfd4781fbc717c26d13b22c82c7fcce547d6542e /testing/hosts/default
parentf4e5acef3afdaa54f636f62516588c2a0a057fd1 (diff)
downloadstrongswan-cbdcca7fd7b74676766272394d8ad6c6b65f8155.tar.bz2
strongswan-cbdcca7fd7b74676766272394d8ad6c6b65f8155.tar.xz
renamed algorithm to proposal
Diffstat (limited to 'testing/hosts/default')
-rw-r--r--testing/hosts/default/etc/ipsec.d/tables.sql18
1 files changed, 9 insertions, 9 deletions
diff --git a/testing/hosts/default/etc/ipsec.d/tables.sql b/testing/hosts/default/etc/ipsec.d/tables.sql
index 1ac7f056c..3a777da1a 100644
--- a/testing/hosts/default/etc/ipsec.d/tables.sql
+++ b/testing/hosts/default/etc/ipsec.d/tables.sql
@@ -39,17 +39,17 @@ CREATE INDEX child_config_traffic_selector_all ON child_config_traffic_selector
child_cfg, traffic_selector
);
-DROP TABLE IF EXISTS algorithms;
-CREATE TABLE algorithms (
+DROP TABLE IF EXISTS proposals;
+CREATE TABLE proposals (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
- algorithm TEXT NOT NULL
+ proposal TEXT NOT NULL
);
-DROP TABLE IF EXISTS child_config_algorithm;
-CREATE TABLE child_config_algorithm (
+DROP TABLE IF EXISTS child_config_proposal;
+CREATE TABLE child_config_proposal (
child_cfg INTEGER NOT NULL,
prio INTEGER NOT NULL,
- alg INTEGER NOT NULL
+ prop INTEGER NOT NULL
);
DROP TABLE IF EXISTS ike_configs;
@@ -61,11 +61,11 @@ CREATE TABLE ike_configs (
remote TEXT NOT NULL
);
-DROP TABLE IF EXISTS ike_config_algorithm;
-CREATE TABLE ike_config_algorithm (
+DROP TABLE IF EXISTS ike_config_proposal;
+CREATE TABLE ike_config_proposal (
ike_cfg INTEGER NOT NULL,
prio INTEGER NOT NULL,
- alg INTEGER NOT NULL
+ prop INTEGER NOT NULL
);
DROP TABLE IF EXISTS peer_configs;