1999-10-29 17:44:44 +08:00
|
|
|
/*
|
|
|
|
* BIRD Client
|
|
|
|
*
|
2000-01-19 22:37:56 +08:00
|
|
|
* (c) 1999--2000 Martin Mares <mj@ucw.cz>
|
1999-10-29 17:44:44 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "client/client.h"
|
|
|
|
|
2000-01-19 22:37:56 +08:00
|
|
|
struct cmd_info {
|
|
|
|
char *command;
|
|
|
|
char *args;
|
|
|
|
char *help;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct cmd_info command_table[] = {
|
|
|
|
#include "conf/commands.h"
|
|
|
|
};
|
|
|
|
|
1999-10-29 17:44:44 +08:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
return client_main(argc, argv); /* Call sysdep code */
|
|
|
|
}
|