diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-05-31 17:12:00 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-05-31 17:12:00 +0000 |
commit | 900d5470ae2cada4d37ed62f8bf2ce64c84349cd (patch) | |
tree | ad3e392914612d72481a2d0ffb1e0821c5622d94 /nest/config.Y | |
parent | 139ca21d05df71b59a72af126d063170421cf9f7 (diff) |
Added PASSIVE option to paswwords.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nest/config.Y b/nest/config.Y index b0634a62..bb1328cc 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -19,7 +19,7 @@ CF_DECLS CF_KEYWORDS(ROUTER, ID, PROTOCOL, PREFERENCE, DISABLED, DEBUG, ALL, OFF, DIRECT) CF_KEYWORDS(INTERFACE, IMPORT, EXPORT, FILTER, NONE, TABLE) -CF_KEYWORDS(PASSWORD, FROM, TO, ID) +CF_KEYWORDS(PASSWORD, FROM, PASSIVE, TO, ID) %type <i> idval %type <f> imexport @@ -148,6 +148,7 @@ password_items: /* empty */ { } | FROM datetime password_items { last_password_item->from = $2; } | TO datetime password_items { last_password_item->to = $2; } + | PASSIVE datetime password_items { last_password_item->passive = $2; } | ID NUM password_items { last_password_item->id = $2; } ; |