summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2015-01-27 20:24:15 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2015-01-30 01:12:54 +0100
commite832c34fd19aa6b2df7c28e78f07617095cf136e (patch)
tree493f820738828b863d4c90bad01c4c1026d45133 /lib
parentca2b105f3bdd8859117756dc8d8c2406e28af28b (diff)
downloadquagga-e832c34fd19aa6b2df7c28e78f07617095cf136e.tar.bz2
quagga-e832c34fd19aa6b2df7c28e78f07617095cf136e.tar.xz
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')
-rw-r--r--lib/vty.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/vty.h b/lib/vty.h
index 4d6048c9..f31f4b5d 100644
--- a/lib/vty.h
+++ b/lib/vty.h
@@ -217,6 +217,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[];