blob: ea9358d83cbc2c0f19622b717863eacff88b8820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* BIRD Client -- Command Handling
*
* (c) 1999--2000 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#include "nest/bird.h"
#include "client/client.h"
struct cmd_info {
char *command;
char *args;
char *help;
};
struct cmd_info command_table[] = {
#include "conf/commands.h"
};
|