2000-01-19 20:30:19 +08:00
|
|
|
/*
|
|
|
|
* BIRD Internet Routing Daemon -- CLI Commands Which Don't Fit Anywhere Else
|
|
|
|
*
|
|
|
|
* (c) 2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
2012-03-16 19:47:12 +08:00
|
|
|
struct sym_show_data {
|
|
|
|
int type; /* Symbols type to show */
|
|
|
|
struct symbol *sym;
|
|
|
|
};
|
|
|
|
|
2013-07-25 19:15:32 +08:00
|
|
|
struct f_inst;
|
|
|
|
|
2000-01-19 20:30:19 +08:00
|
|
|
void cmd_show_status(void);
|
2012-03-16 19:47:12 +08:00
|
|
|
void cmd_show_symbols(struct sym_show_data *sym);
|
2010-06-03 04:20:40 +08:00
|
|
|
void cmd_show_memory(void);
|
2013-07-25 19:15:32 +08:00
|
|
|
void cmd_eval(struct f_inst *expr);
|