0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-17 08:38:42 +00:00

Added notion of datetime

This commit is contained in:
Pavel Machek 1999-05-26 14:24:32 +00:00
parent 6bd08d017b
commit 9d79fec8dc

View File

@ -30,6 +30,7 @@ CF_DECLS
struct filter *f;
struct f_tree *e;
struct f_val v;
struct password_item *p;
}
%token END
@ -38,7 +39,7 @@ CF_DECLS
%token <s> SYM
%token <t> TEXT
%type <i> expr bool pxlen
%type <i> expr bool pxlen datetime
%nonassoc '=' '<' '>' '~' ELSE IF '.'
%left '+' '-'
@ -108,6 +109,10 @@ pxlen:
}
;
datetime: /* Return seconds from epoch, FIXME we want be more user friendly */
NUM { $$ = $1; }
;
CF_CODE
CF_END