bird/conf
Martin Mares bc2fb68098 Parse CLI commands. We use the same parser as for configuration files (because
we want to allow filter and similar complex constructs to be used in commands
and we should avoid code duplication), only with CLI_MARKER token prepended
before the whole input.

Defined macro CF_CLI(cmd, args, help) for defining CLI commands in .Y files.
The first argument specifies the command itself, the remaining two arguments
are copied to the help file (er, will be copied after the help file starts
to exist). This macro automatically creates a skeleton rule for the command,
you only need to append arguments as in:

	CF_CLI(STEAL MONEY, <$>, [[Steal <$> US dollars or equivalent in any other currency]]): NUM {
		cli_msg(0, "%d$ stolen", $3);
	} ;

Also don't forget to reset lexer state between inputs.
1999-10-31 17:47:47 +00:00
..
cf-lex.l Parse CLI commands. We use the same parser as for configuration files (because 1999-10-31 17:47:47 +00:00
conf.c Parse CLI commands. We use the same parser as for configuration files (because 1999-10-31 17:47:47 +00:00
conf.h Parse CLI commands. We use the same parser as for configuration files (because 1999-10-31 17:47:47 +00:00
confbase.Y Parse CLI commands. We use the same parser as for configuration files (because 1999-10-31 17:47:47 +00:00
gen_keywords.m4 Parse CLI commands. We use the same parser as for configuration files (because 1999-10-31 17:47:47 +00:00
gen_parser.m4 Parse CLI commands. We use the same parser as for configuration files (because 1999-10-31 17:47:47 +00:00
Makefile Implemented new configuration/reconfiguration interface and defined protocol 1999-02-05 21:37:34 +00:00