diff options
author | Martin Mares <mj@ucw.cz> | 1999-12-06 13:34:45 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-12-06 13:34:45 +0100 |
commit | 34350a52700955d50895058d01b5407aea970e9b (patch) | |
tree | 925eac326696cfa553d92cc320dc88ea1280659b /sysdep/unix/client-main.c | |
parent | f3792601dfe85c3017c984a6de5722d0e9da8a16 (diff) | |
download | bird-34350a52700955d50895058d01b5407aea970e9b.tar bird-34350a52700955d50895058d01b5407aea970e9b.zip |
Implemented echoing of log messages to CLI connections. Just try `echo all'.
Diffstat (limited to 'sysdep/unix/client-main.c')
-rw-r--r-- | sysdep/unix/client-main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdep/unix/client-main.c b/sysdep/unix/client-main.c index 01a7986..4fc2433 100644 --- a/sysdep/unix/client-main.c +++ b/sysdep/unix/client-main.c @@ -14,6 +14,7 @@ #include "nest/bird.h" #include "lib/resource.h" /* For dmalloc */ #include "client/client.h" +#include "nest/cli.h" #include "unix.h" @@ -41,6 +42,11 @@ parse_args(int argc, char **argv) usage(); } +void +cli_echo(unsigned int class, byte *buf) +{ +} + int client_main(int argc, char **argv) { |