summaryrefslogtreecommitdiff
path: root/lib/vty.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2015-01-27 20:24:15 +0100
committerDonald Sharp <sharpd@cumulusnetwroks.com>2016-05-25 20:38:31 -0400
commit0b0668e6198e87a99f8c27348c7ab64264f39638 (patch)
treeeee88b3be514eca6f2afff56adcc19fa5a844b42 /lib/vty.h
parent65dd94cffe68bab6bd5d349b8708058ac6022ee5 (diff)
zebra: mark multicast commands experimental
depending on feedback from actually having these commands in a released version, we may want to adjust them. Thus, mark them as experimental so users are aware of this. Cc: Everton Marques <everton.marques@gmail.com> Cc: Balaji G <balajig81@gmail.com> Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/vty.h')
-rw-r--r--lib/vty.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/vty.h b/lib/vty.h
index 3694106403..f0286202bd 100644
--- a/lib/vty.h
+++ b/lib/vty.h
@@ -253,6 +253,14 @@ do {
} \
} while (0)
+#define VTY_WARN_EXPERIMENTAL() \
+do { \
+ vty_out (vty, "%% WARNING: this command is experimental. Both its name and" \
+ " parameters may%s%% change in a future version of Quagga," \
+ " possibly breaking your configuration!%s", \
+ VTY_NEWLINE, VTY_NEWLINE); \
+} while (0)
+
/* Exported variables */
extern char integrate_default[];