diff options
author | hasso <hasso> | 2003-05-25 19:21:25 +0000 |
---|---|---|
committer | hasso <hasso> | 2003-05-25 19:21:25 +0000 |
commit | 81dfcaa2e27d53f4eb61c549e03065dcb1b8eec3 (patch) | |
tree | 2aed449138a4833fe343052cdfa505be74332cb4 /lib/zclient.c | |
parent | 15291357d130b804dcdcfd81bdb1b86a84567fd0 (diff) | |
download | quagga-81dfcaa2e27d53f4eb61c549e03065dcb1b8eec3.tar.bz2 quagga-81dfcaa2e27d53f4eb61c549e03065dcb1b8eec3.tar.xz |
Route (reject|blackhole) support from 6Wind patch.
Diffstat (limited to 'lib/zclient.c')
-rw-r--r-- | lib/zclient.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index c1b286f4..ebf685a0 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -317,12 +317,6 @@ zapi_ipv4_add (struct zclient *zclient, struct prefix_ipv4 *p, /* Nexthop, ifindex, distance and metric information. */ if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP)) { - if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE)) - { - stream_putc (s, 1); - stream_putc (s, ZEBRA_NEXTHOP_BLACKHOLE); - } - else stream_putc (s, api->nexthop_num + api->ifindex_num); for (i = 0; i < api->nexthop_num; i++) @@ -377,12 +371,6 @@ zapi_ipv4_delete (struct zclient *zclient, struct prefix_ipv4 *p, /* Nexthop, ifindex, distance and metric information. */ if (CHECK_FLAG (api->message, ZAPI_MESSAGE_NEXTHOP)) { - if (CHECK_FLAG (api->flags, ZEBRA_FLAG_BLACKHOLE)) - { - stream_putc (s, 1); - stream_putc (s, ZEBRA_NEXTHOP_BLACKHOLE); - } - else stream_putc (s, api->nexthop_num + api->ifindex_num); for (i = 0; i < api->nexthop_num; i++) |