diff options
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/ChangeLog | 7 | ||||
-rwxr-xr-x | vtysh/extract.pl.in | 6 | ||||
-rw-r--r-- | vtysh/vtysh.h | 2 |
3 files changed, 11 insertions, 4 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index 4ca5df94..a582b959 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,10 @@ +2007-05-01 David L Stevens <dlstevens@us.ibm.com> + + * vtysh/extract.pl.in: added VTYSH_ZEBRA flag for route-map and + plist + * vtysh/Makefile.am: added zebra_routemap.c + * vtysh/vtysh.h: added VTYSH_ZEBRA flag to VTYSH_RMAP + 2007-04-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu> * vtysh.c: (vtysh_log_timestamp_precision, diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index 98a9ddde..723fe8d6 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -94,16 +94,16 @@ foreach (@ARGV) { $protocol = "VTYSH_RIPD"; } if ($file =~ /routemap.c/) { - $protocol = "VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD"; + $protocol = "VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ZEBRA"; } if ($file =~ /filter.c/) { $protocol = "VTYSH_ALL"; } if ($file =~ /plist.c/) { if ($defun_array[1] =~ m/ipv6/) { - $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD"; + $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ZEBRA"; } else { - $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD"; + $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD|VTYSH_ZEBRA"; } } if ($file =~ /distribute.c/) { diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h index dd2bcbd0..3ed0dd32 100644 --- a/vtysh/vtysh.h +++ b/vtysh/vtysh.h @@ -30,7 +30,7 @@ #define VTYSH_BGPD 0x20 #define VTYSH_ISISD 0x40 #define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD -#define VTYSH_RMAP VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD +#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD #define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD /* vtysh local configuration file. */ |