summaryrefslogtreecommitdiff
path: root/bgpd
diff options
context:
space:
mode:
authorpaul <paul>2004-05-08 11:48:26 +0000
committerpaul <paul>2004-05-08 11:48:26 +0000
commit0a5893596774554f039222c481d235de0f35d99e (patch)
tree065ba74422d21193637d6e3f8b52c0eaa09a13bf /bgpd
parent225282994d74f767058886475d80fee95d450eae (diff)
2004-05-08 Paul Jakma <paul@dishone.st>
* bgp_zebra.c: (bgp_interface_address_add) sync to zclient changes (bgp_interface_address_delete) ditto. (bgp_zebra_announce) ditto. (bgp_zebra_withdraw) ditto. * isis_zebra.c: Sync with zclient changes. * zclient.c (zapi_ipv4_route) Follow Sowmini's lead and describe message format. * ospf6_zebra.c: Sync to zclient changes * ospf_zebra.c: Sync with lib/zclient changes * rip_zebra.c: sync with zclient changes. * rip_interface.c: ditto. * ripng_{interface,zebra}.c: sync with zclient changes 2004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com> * zclient.c: (zapi_ipv4_add) collapsed into zapi_ipv4_route (zapi_ipv4_delete) ditto. (zapi_ipv4_route) add/delete a route by way of cmd arg. (zapi_ipv6_add) collapsed into zapi_ipv6_route. (zapi_ipv6_delete) ditto. (zapi_ipv6_route) add/delete a route by way of cmd arg. (zebra_interface_address_delete_read) collapsed into zebra_interface_address_read. (zebra_interface_address_delete_read) ditto. (zebra_interface_address_read) read address add/delete messages by way of type argument. Describe command message format. (zebra_interface_add_read) Unconditionally read new ifmtu6 field. Describe command message format. (zebra_interface_state_read) Unconditionally read new ifmtu6 field. (zclient_redistribute_set) Collapsed into zclient_redistribute (zclient_redistribute_unset) ditto (zclient_redistribute) set/unset redistribution. (zclient_redistribute_default_set) Collapsed into zclient_redistribute_default. (zclient_redistribute_default_unset) ditto. (zclient_redistribute_default) Redistribute default set/unset. * zclient.h: delete zapi_ipv{4,6}_add, zapi_ipv{4,6}_delete. Add zapi_ipv{4,6}_route. delete zclient_redistribute_set/unset. Add zclient_redistribute. Ditto for zclient_redistribute_default_{set/unset}.
Diffstat (limited to 'bgpd')
-rw-r--r--bgpd/ChangeLog7
-rw-r--r--bgpd/bgp_zebra.c16
2 files changed, 17 insertions, 6 deletions
diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog
index b5f28878..98bf90ce 100644
--- a/bgpd/ChangeLog
+++ b/bgpd/ChangeLog
@@ -1,3 +1,10 @@
+2004-05-08 Paul Jakma <paul@dishone.st>
+
+ * bgp_zebra.c: (bgp_interface_address_add) sync to zclient changes
+ (bgp_interface_address_delete) ditto.
+ (bgp_zebra_announce) ditto.
+ (bgp_zebra_withdraw) ditto.
+
2004-05-03 Daniel Roesen <dr@cluenet.de>
* bgp_fsm.c: (bgp_stop) Reset uptime only on transition from
diff --git a/bgpd/bgp_zebra.c b/bgpd/bgp_zebra.c
index aef888be..394bde63 100644
--- a/bgpd/bgp_zebra.c
+++ b/bgpd/bgp_zebra.c
@@ -201,7 +201,7 @@ bgp_interface_address_add (int command, struct zclient *zclient,
{
struct connected *ifc;
- ifc = zebra_interface_address_add_read (zclient->ibuf);
+ ifc = zebra_interface_address_read (command, zclient->ibuf);
if (ifc == NULL)
return 0;
@@ -220,7 +220,7 @@ bgp_interface_address_delete (int command, struct zclient *zclient,
{
struct connected *ifc;
- ifc = zebra_interface_address_delete_read (zclient->ibuf);
+ ifc = zebra_interface_address_read (command, zclient->ibuf);
if (ifc == NULL)
return 0;
@@ -703,7 +703,8 @@ bgp_zebra_announce (struct prefix *p, struct bgp_info *info, struct bgp *bgp)
SET_FLAG (api.message, ZAPI_MESSAGE_DISTANCE);
api.distance = distance;
}
- zapi_ipv4_add (zclient, (struct prefix_ipv4 *) p, &api);
+ zapi_ipv4_route (ZEBRA_IPV4_ROUTE_ADD, zclient,
+ (struct prefix_ipv4 *) p, &api);
}
#ifdef HAVE_IPV6
/* We have to think about a IPv6 link-local address curse. */
@@ -758,7 +759,8 @@ bgp_zebra_announce (struct prefix *p, struct bgp_info *info, struct bgp *bgp)
SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
api.metric = info->attr->med;
- zapi_ipv6_add (zclient, (struct prefix_ipv6 *) p, &api);
+ zapi_ipv6_route (ZEBRA_IPV6_ROUTE_ADD, zclient,
+ (struct prefix_ipv6 *) p, &api);
}
#endif /* HAVE_IPV6 */
}
@@ -805,7 +807,8 @@ bgp_zebra_withdraw (struct prefix *p, struct bgp_info *info)
SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
api.metric = info->attr->med;
- zapi_ipv4_delete (zclient, (struct prefix_ipv4 *) p, &api);
+ zapi_ipv4_route (ZEBRA_IPV4_ROUTE_DELETE, zclient,
+ (struct prefix_ipv4 *) p, &api);
}
#ifdef HAVE_IPV6
/* We have to think about a IPv6 link-local address curse. */
@@ -849,7 +852,8 @@ bgp_zebra_withdraw (struct prefix *p, struct bgp_info *info)
SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
api.metric = info->attr->med;
- zapi_ipv6_delete (zclient, (struct prefix_ipv6 *) p, &api);
+ zapi_ipv6_route (ZEBRA_IPV6_ROUTE_DELETE, zclient,
+ (struct prefix_ipv6 *) p, &api);
}
#endif /* HAVE_IPV6 */
}