aboutsummaryrefslogtreecommitdiffstats
path: root/client/client.h
diff options
context:
space:
mode:
authorTomas Hlavacek <tmshlvck@gmail.com>2013-02-24 23:47:22 +0100
committerTomas Hlavacek <tmshlvck@gmail.com>2013-03-19 18:03:49 +0100
commit8322ecde124188a9408b54afead4666bb954e5a5 (patch)
treef34cc23ed221714974475ce95ad2abbf7954b16e /client/client.h
parente454916149d4efe66732fdd0388181813cab6ed0 (diff)
downloadbird-8322ecde124188a9408b54afead4666bb954e5a5.tar.gz
Add lightweight client - birdcl
Restructure client/ subdir. Add two different flavors of client. The full featured birdc client code is in client/birdc/. The new light client birtcl is in client/birdcl/. Common sources of both clients are directly in client/. Rework on-line auto-completion in client/command.c to conditionally turn off ncurses-specific code. Add lightweight client without libreadline and ncurses dependencies - birdcl. The birdcl lacks support of history, on-line auto-completion and there are different implementations of "more" functionality and help on '?' press. New client operates in canonical terminal mode (apart from "more" display) and therefore all commands have to be executed by a return key including help commands (called by '?' character in the end of the line). Apart from these limitations the interaction style should be the same as for the full client - birdc. Build of birdcl is always on (independent on --enable-client parameter).
Diffstat (limited to 'client/client.h')
-rw-r--r--client/client.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/client.h b/client/client.h
index 373b1c6f..2d215059 100644
--- a/client/client.h
+++ b/client/client.h
@@ -6,11 +6,12 @@
* Can be freely distributed and used under the terms of the GNU GPL.
*/
-/* client.c */
+/* client.c callbacks */
void cleanup(void);
void input_start_list(void);
void input_stop_list(void);
+void server_got_reply(char *x);
/* commands.c */