summaryrefslogtreecommitdiff
path: root/lib/vty.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2016-09-27 16:53:25 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-10-07 09:09:52 -0400
commitcc933ef9f6a6104f287415d97e22bf6e34f193d4 (patch)
tree552c08a261ad070972d989ca3de38efc1bc28a69 /lib/vty.h
parent8ff5a39992b1b8ef53f40b0c49970af4cee07974 (diff)
lib, isisd: enable concurrent configuration editing
Finally, this disables the config editing lock for isisd. It also enables deprecation warnings for the lib/ and isisd/ to catch accidental uses of vty->index. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/vty.h')
-rw-r--r--lib/vty.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vty.h b/lib/vty.h
index 468b29d955..3870e59b72 100644
--- a/lib/vty.h
+++ b/lib/vty.h
@@ -353,6 +353,7 @@ extern void vty_log (const char *level, const char *proto,
const char *fmt, struct timestamp_control *, va_list);
extern int vty_config_lock (struct vty *);
extern int vty_config_unlock (struct vty *);
+extern void vty_config_lockless (void);
extern int vty_shell (struct vty *);
extern int vty_shell_serv (struct vty *);
extern void vty_hello (struct vty *);