diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-07-25 10:18:23 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-07-25 10:18:23 +0000 |
commit | 77a06476dcca6cbf15ba55cefb11257a5a315338 (patch) | |
tree | c2bb654a7dad3b38e085176bf6d9bf2f7a3238fa /testing/hosts/default/etc/ipsec.d/tables.sql | |
parent | cae0c12d53ec849f18ed211733f7ad437161b95a (diff) | |
download | strongswan-77a06476dcca6cbf15ba55cefb11257a5a315338.tar.bz2 strongswan-77a06476dcca6cbf15ba55cefb11257a5a315338.tar.xz |
adapted UML scenarios to improved virtual IP address pool
Diffstat (limited to 'testing/hosts/default/etc/ipsec.d/tables.sql')
-rw-r--r-- | testing/hosts/default/etc/ipsec.d/tables.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/hosts/default/etc/ipsec.d/tables.sql b/testing/hosts/default/etc/ipsec.d/tables.sql index 726c66e09..269709542 100644 --- a/testing/hosts/default/etc/ipsec.d/tables.sql +++ b/testing/hosts/default/etc/ipsec.d/tables.sql @@ -157,9 +157,9 @@ CREATE TABLE addresses ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, pool INTEGER NOT NULL, address BLOB NOT NULL, - identity INTEGER NOT NULL, - acquired INTEGER NOT NULL, - released INTEGER NOT NULL + identity INTEGER NOT NULL DEFAULT 0, + acquired INTEGER NOT NULL DEFAULT 0, + released INTEGER NOT NULL DEFAULT 1 ); DROP INDEX IF EXISTS addresses_pool; CREATE INDEX addresses_pool ON addresses ( |