diff options
author | paul <paul> | 2005-07-29 14:36:00 +0000 |
---|---|---|
committer | paul <paul> | 2005-07-29 14:36:00 +0000 |
commit | 6eb8827d669b06d7b38357860d23fa33e0c0078e (patch) | |
tree | bab69ac40c857fd6a6e7b447166df7e9ae08989d /zebra/ChangeLog | |
parent | 7907c6c9d34a4f19dd7d4d8d81c3c8ae5000ee07 (diff) |
2005-07-29 Paul Jakma <paul.jakma@sun.com>
* interface.c: (if_delete_update) should always be available, not
just on RTM_IFANNOUNCE/NETLINK systems.
* kernel_socket.c: (ifan_read) only call if_delete_update when
interface departs, dont if_delete, because we wish to retain
interface configuration state even when interfaces are removed.
(ifm_read) If we dont have RTM_IFANNOUNCE, then transitioning
to down state is only chance we have to clean up interface in case
it is deleted (eg Solaris down -> unplumb -> plumb up).
* redistribute.c: (zebra_interface_delete_update) should always be
available, we /will/ call it now on all systems, via
if_delete_update.
* zserv.c: (zsend_interface_delete) ditto
(zsend_interface_address) Update the call-flow diagramme, to
reflect that if_delete_update /is/ now called on all systems,
potentially.
* zserv.h: (zsend_interface_delete) unconditionally exported, as
above.
Diffstat (limited to 'zebra/ChangeLog')
-rw-r--r-- | zebra/ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 374f8547..3e9629f5 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,23 @@ +2005-07-29 Paul Jakma <paul.jakma@sun.com> + + * interface.c: (if_delete_update) should always be available, not + just on RTM_IFANNOUNCE/NETLINK systems. + * kernel_socket.c: (ifan_read) only call if_delete_update when + interface departs, dont if_delete, because we wish to retain + interface configuration state even when interfaces are removed. + (ifm_read) If we dont have RTM_IFANNOUNCE, then transitioning + to down state is only chance we have to clean up interface in case + it is deleted (eg Solaris down -> unplumb -> plumb up). + * redistribute.c: (zebra_interface_delete_update) should always be + available, we /will/ call it now on all systems, via + if_delete_update. + * zserv.c: (zsend_interface_delete) ditto + (zsend_interface_address) Update the call-flow diagramme, to + reflect that if_delete_update /is/ now called on all systems, + potentially. + * zserv.h: (zsend_interface_delete) unconditionally exported, as + above. + 2005-06-28 Paul Jakma <paul.jakma@sun.com> * (global) Extern and static'ification, with related fixups |