aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/vty/vty.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2012-07-12 09:22:56 +0200
committerHarald Welte <laforge@gnumonks.org>2012-07-12 09:42:36 +0200
commit3c6a2cef5ed692ba20a925357bbbae13ae8d80db (patch)
tree9f8fbd99ecef694e4bbe2e2bf648439a49debb22 /include/osmocom/vty/vty.h
parentfb4bfc2ad5a3492d72a612e16fd4b69eb01f96e3 (diff)
VTY: Allow to compile vty.h and command.h headers with C++
Diffstat (limited to 'include/osmocom/vty/vty.h')
-rw-r--r--include/osmocom/vty/vty.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/osmocom/vty/vty.h b/include/osmocom/vty/vty.h
index 1518894b..e656abf6 100644
--- a/include/osmocom/vty/vty.h
+++ b/include/osmocom/vty/vty.h
@@ -40,6 +40,13 @@ enum event {
#endif /* VTYSH */
};
+enum vty_type {
+ VTY_TERM,
+ VTY_FILE,
+ VTY_SHELL,
+ VTY_SHELL_SERV
+};
+
/*! Internal representation of a single VTY */
struct vty {
/*! \brief underlying file (if any) */
@@ -52,7 +59,7 @@ struct vty {
int fd;
/*! \brief Is this vty connect to file or not */
- enum { VTY_TERM, VTY_FILE, VTY_SHELL, VTY_SHELL_SERV } type;
+ enum vty_type type;
/*! \brief Node status of this vty */
int node;
@@ -134,7 +141,7 @@ struct vty {
/* Small macro to determine newline is newline only or linefeed needed. */
#define VTY_NEWLINE ((vty->type == VTY_TERM) ? "\r\n" : "\n")
-static inline char *vty_newline(struct vty *vty)
+static inline const char *vty_newline(struct vty *vty)
{
return VTY_NEWLINE;
}