---------------------
PatchSet 1070
Date: 2005/02/19 21:24:36
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* ospf_api.h: char isnt always signed, but it has to be it here.
---------------------
PatchSet 1091
Date: 2005/03/05 19:16:47
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* ospf6_zebra.c: Fix core dump when router-id is provided with
an empty ospf6d.conf file (no context router ospf6) because
ospf6_create has not been called yet.
---------------------
PatchSet 1104
Date: 2005/03/09 12:54:43
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* vtysh_config.c: Move password commands to the AAA_NODE. It
quarantees that they will appear after SERVICE_NODE to make sure
that encrypted passwords will work ("service password-encryption"
command).
---------------------
PatchSet 1109
Date: 2005/03/12 18:54:45
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* connected.c, interface.c, interface.h: Revert secondary handling
patch from Gilad Arnold commited in 2004-10-03. It wasn't possible
to store ip addresses in zebra config any more for "dynamic"
interfaces like vlans or ppp. "secondary" keyword for IPv4 addresses
remains to be removed though. It isn't useful, because all kernels
we support have their own views anyway what's primary and what's
secondary.
---------------------
PatchSet 1112
Date: 2005/03/14 09:23:14
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* ospf_lsa.c: (ospf_lsa_refresh_walker) If the system clock jumps
backward, then current time may be less than
ospf->lsa_refresher_started. This was causing invalid values
for ospf->lsa_refresh_queue.index resulting in infinite loops.
Problem fixed by casting the expression to unsigned before taking
the modulus.
---------------------
PatchSet 1122
Date: 2005/03/25 18:08:08
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* zebra.h: Must check whether __attribute__ should be defined before
including zassert.h.
---------------------
PatchSet 1131
Date: 2005/03/27 15:14:48
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* ospf6_interface.c: Fix crashes if elements is deleted in list loop
and nextnode() call is attempted after that.
---------------------
PatchSet 1138
Date: 2005/03/30 14:14:08
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* rt_netlink.c: [netlink_link_change] If the status of an
operative interface changes [e.g. MTU changes], the client
daemons should be notified by calling zebra_interface_up_update.
Previously, the information was being updated in zebras
interface structure, but the clients were not notified of
changes to an operative interface.
* ospf_zebra.c: [ospf_interface_state_up] If the MTU of an operative
interface changes, print a debug message and call ospf_if_reset[]
to simulate down/up on the interface.
* ospf_interface.h: Declare new function ospf_if_reset[].
* ospf_interface.c: [ospf_if_reset] New function to call ospf_if_down
and ospf_if_up for all ospf interfaces attached to an interface.
---------------------
PatchSet 1142
Date: 2005/04/01 10:28:46
Author: hasso
Branch: quagga_0_98_stable
Tag: (none)
Log:
* rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
although we do now actually.
* rt_netlink.c (netlink_route, netlink_route_multipath): Always use
netlink_cmd to send messages to the kernel.