summaryrefslogtreecommitdiff
path: root/lib/vty.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2021-10-22 14:04:33 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2021-11-06 21:11:40 +0100
commit69b089fbfdd9971cf4a12ed69044fca08ff86ee3 (patch)
tree359f73270c85d004b774d03ab072badc27e6ed8d /lib/vty.h
parent79fd3e0c973cf8941a597cab4ca75d38ea344ffd (diff)
lib: remove unused vty_log() functions
These had no remaining users for a while now. The logging backend has its own list of receivers. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/vty.h')
-rw-r--r--lib/vty.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/vty.h b/lib/vty.h
index 70ec4fcd84..3c92ab64f1 100644
--- a/lib/vty.h
+++ b/lib/vty.h
@@ -325,8 +325,6 @@ extern void vty_time_print(struct vty *, int);
extern void vty_serv_sock(const char *, unsigned short, const char *);
extern void vty_close(struct vty *);
extern char *vty_get_cwd(void);
-extern void vty_log(const char *level, const char *proto, const char *msg,
- struct timestamp_control *);
extern void vty_update_xpath(const char *oldpath, const char *newpath);
extern int vty_config_enter(struct vty *vty, bool private_config,
bool exclusive);
@@ -341,10 +339,6 @@ extern void vty_stdio_suspend(void);
extern void vty_stdio_resume(void);
extern void vty_stdio_close(void);
-/* Send a fixed-size message to all vty terminal monitors; this should be
- an async-signal-safe function. */
-extern void vty_log_fixed(char *buf, size_t len);
-
#ifdef __cplusplus
}
#endif