diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2015-01-27 20:24:15 +0100 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-05-25 20:38:31 -0400 | 
| commit | 0b0668e6198e87a99f8c27348c7ab64264f39638 (patch) | |
| tree | eee88b3be514eca6f2afff56adcc19fa5a844b42 /lib/vty.h | |
| parent | 65dd94cffe68bab6bd5d349b8708058ac6022ee5 (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.h | 8 | 
1 files changed, 8 insertions, 0 deletions
@@ -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[];  | 
