summaryrefslogtreecommitdiffstats
path: root/Src/osmolib/src/shared/libosmocore/include/osmocom/vty
diff options
context:
space:
mode:
Diffstat (limited to 'Src/osmolib/src/shared/libosmocore/include/osmocom/vty')
-rw-r--r--Src/osmolib/src/shared/libosmocore/include/osmocom/vty/telnet_interface.h2
-rw-r--r--Src/osmolib/src/shared/libosmocore/include/osmocom/vty/vty.h4
2 files changed, 6 insertions, 0 deletions
diff --git a/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/telnet_interface.h b/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/telnet_interface.h
index 9a7c9e5..2de4f19 100644
--- a/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/telnet_interface.h
+++ b/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/telnet_interface.h
@@ -48,6 +48,8 @@ struct telnet_connection {
int telnet_init(void *tall_ctx, void *priv, int port);
+void telnet_exit(void);
+
/*! }@ */
#endif /* TELNET_INTERFACE_H */
diff --git a/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/vty.h b/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/vty.h
index d1f6f44..83506c5 100644
--- a/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/vty.h
+++ b/Src/osmolib/src/shared/libosmocore/include/osmocom/vty/vty.h
@@ -176,9 +176,13 @@ int vty_shell_serv (struct vty *);
void vty_hello (struct vty *);
void *vty_current_index(struct vty *);
int vty_current_node(struct vty *vty);
+enum node_type vty_go_parent(struct vty *vty);
extern void *tall_vty_ctx;
+extern struct cmd_element cfg_description_cmd;
+extern struct cmd_element cfg_no_description_cmd;
+
/*! }@ */
#endif