diff options
author | Martin Mares <mj@ucw.cz> | 1999-10-31 16:43:44 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-10-31 16:43:44 +0100 |
commit | b9672a845f7ff7d2441e21746566eacc51f274b7 (patch) | |
tree | bb2fad2a4b30083234474698c4ef935c2c0548fc /sysdep/unix | |
parent | 7d3aab1c1643e8b2bcff7f856e0d4455fa0ba4b4 (diff) | |
download | bird-b9672a845f7ff7d2441e21746566eacc51f274b7.tar bird-b9672a845f7ff7d2441e21746566eacc51f274b7.zip |
The CLI I/O functions work as desired.
Diffstat (limited to 'sysdep/unix')
-rw-r--r-- | sysdep/unix/main.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index f717fb0..d5ea10b 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -93,12 +93,6 @@ async_config(void) static sock *cli_sk; -void -cli_disconnect(cli *c) -{ - bug("CLI DISCONNECT: Not implemented"); /* FIXME */ -} - int cli_write(cli *c) { @@ -146,7 +140,6 @@ cli_get_command(cli *c) static int cli_rx(sock *s, int size) { - debug("CLI RX\n"); cli_kick(s->data); return 0; } @@ -156,7 +149,6 @@ cli_tx(sock *s) { cli *c = s->data; - debug("CLI TX\n"); if (cli_write(c)) cli_written(c); } @@ -313,7 +305,7 @@ main(int argc, char **argv) setvbuf(stderr, NULL, _IONBF, 0); parse_args(argc, argv); - log(L_INFO "Launching BIRD 0.0.0..."); + log(L_INFO "Launching BIRD " BIRD_VERSION "..."); debug("Initializing.\n"); resource_init(); |