aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/vty
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-08-07 13:28:08 +0200
committerHarald Welte <laforge@netfilter.org>2009-08-07 13:28:08 +0200
commitc7c19822fd43a01c54a445addb1e8a82067d82a4 (patch)
tree20e07c9fbe70fc65e17d62d76e325f6ef3d55e52 /openbsc/include/vty
parent07dc73d4f74a9cb7eddc6259fdb7b095f87e52c1 (diff)
add support for reading of configuration file to VTY
Diffstat (limited to 'openbsc/include/vty')
-rw-r--r--openbsc/include/vty/vty.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/include/vty/vty.h b/openbsc/include/vty/vty.h
index ab34cd3b7..4a1a6ff08 100644
--- a/openbsc/include/vty/vty.h
+++ b/openbsc/include/vty/vty.h
@@ -129,6 +129,7 @@ static inline char *vty_newline(struct vty *vty)
/* Prototypes. */
void vty_init (void);
+int vty_read_config_file(const char *file_name);
void vty_init_vtysh (void);
void vty_reset (void);
struct vty *vty_new (void);
@@ -136,8 +137,7 @@ struct vty *vty_create (int vty_sock, void *priv);
int vty_out (struct vty *, const char *, ...) PRINTF_ATTRIBUTE(2, 3);
int vty_out_newline(struct vty *);
int vty_read(struct vty *vty);
-void vty_read_config (char *, char *);
-void vty_time_print (struct vty *, int);
+//void vty_time_print (struct vty *, int);
void vty_close (struct vty *);
char *vty_get_cwd (void);
void vty_log (const char *level, const char *proto, const char *fmt, va_list);