diff options
author | Chris Hall <chris.hall@highwayman.com> | 2011-09-06 23:59:17 +0100 |
---|---|---|
committer | Chris Hall <chris.hall@highwayman.com> | 2011-09-06 23:59:17 +0100 |
commit | 73a45fd38a9bc7279eb67021b07092a00768b559 (patch) | |
tree | c77bdc05adf7979a1cb73d21974251d8bbf6a758 /lib/vty_io_term.h | |
parent | bfca45143084f850dcfac2b14a090a6f008c8c96 (diff) | |
parent | 44b5aa5ca8b8a1620478c794dae11a7d71e9211e (diff) | |
download | quagga-ex19b.tar.bz2 quagga-ex19b.tar.xz |
Merge branch 'pipework' of /git/quagga.euro-ix into euro_ix_bex19b
Updated version to v0.99.18ex19b.
Diffstat (limited to 'lib/vty_io_term.h')
-rw-r--r-- | lib/vty_io_term.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/vty_io_term.h b/lib/vty_io_term.h index 78d37b18..ac5620e3 100644 --- a/lib/vty_io_term.h +++ b/lib/vty_io_term.h @@ -56,14 +56,16 @@ extern void uty_term_new(vty_io vio, int sock_fd) ; extern cmd_return_code_t uty_term_fetch_command_line(vio_vf vf, - cmd_action action, cmd_context context) ; + cmd_action action) ; +extern void uty_term_cmd_complete(vio_vf vf, cmd_context context) ; extern cmd_return_code_t uty_term_out_push(vio_vf vf, bool final) ; +extern void uty_term_out_cancelled(vio_vf vf) ; extern uint uty_term_show_error_context(vio_vf vf, vio_fifo ebuf, uint depth) ; extern cmd_return_code_t uty_term_read_close(vio_vf vf, bool final) ; extern void uty_term_close_reason(vio_vf vf, const char* reason) ; extern cmd_return_code_t uty_term_write_close(vio_vf vf, bool final); -extern int uty_term_read(vio_vf vf) ; +extern void uty_term_read(vio_vf vf) ; extern void uty_term_set_readiness(vio_vf vf, vty_readiness_t ready) ; extern qtimer_action vty_term_pause_timeout ; |