Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
ae3e1af2
Commit
ae3e1af2
authored
Nov 04, 1999
by
Pavel Machek
Browse files
Add possibility of local variables.
parent
f30b25f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
filter/config.Y
View file @
ae3e1af2
...
...
@@ -9,8 +9,6 @@
FIXME: create ip.mask(x) function
FIXME: whole system of paths, path ~ string, path.prepend(), path.originate
FIXME: create community lists
FIXME: access to dynamic attributes
FIXME: local namespace for functions
FIXME: enumerational types
FIXME: defined() keyword
*/
...
...
@@ -49,10 +47,11 @@ CF_GRAMMAR
CF_ADDTO(conf, filter_def)
filter_def:
FILTER SYM filter_body {
cf_define_symbol($2, SYM_FILTER, $3);
$3->name = $2->name;
printf( "We have new filter defined (%s)\n", $2->name )
FILTER SYM { cf_push_scope( $2->name ); } filter_body {
cf_define_symbol($2, SYM_FILTER, $4);
$4->name = $2->name;
printf( "We have new filter defined (%s)\n", $2->name );
cf_pop_scope();
}
;
...
...
@@ -136,14 +135,15 @@ function_body:
CF_ADDTO(conf, function_def)
function_def:
FUNCTION SYM function_params function_body {
FUNCTION SYM
{ printf( "Begining of function %s\n", $2->name ); cf_push_scope($2->name); }
function_params function_body {
extern struct f_inst *startup_func;
cf_define_symbol($2, SYM_FUNCTION, $
4
);
cf_define_symbol($2, SYM_FUNCTION, $
5
);
if (!strcasecmp($2->name, "startup"))
startup_func = $
4
;
$2->aux = $
3
;
$2->aux2 = $
4
;
startup_func = $
5
;
$2->aux = $
4
;
$2->aux2 = $
5
;
printf("Hmm, we've got one function here - %s\n", $2->name);
cf_pop_scope();
}
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment