paul | 58e1bef | 2005-11-11 12:10:03 +0000 | [diff] [blame^] | 1 | 2005-11-11 Paul Jakma <paul.jakma@sun.com> |
| 2 | |
| 3 | * ospf_spf.c: (ospf_canonical_nexthops_free) Free only |
| 4 | the nexthops pointing to the root vertex. We may visit a |
| 5 | vertex twice or the vertex may have some inherited nexthops, |
| 6 | if we free other nexthops we could crash. |
| 7 | |
paul | c8c1521 | 2005-11-04 12:31:39 +0000 | [diff] [blame] | 8 | 2005-11-04 Paul Jakma <paul.jakma@sun.com> |
| 9 | |
| 10 | * ospf_{dump,spf,vty}.c: Oops, use the internal tv_sub |
| 11 | function rather than unportable timersub. |
| 12 | |
paul | 484315f | 2005-11-03 09:08:29 +0000 | [diff] [blame] | 13 | 2005-11-03 Paul Jakma <paul.jakma@sun.com> |
| 14 | |
| 15 | * ospf_apiserver.c: (apiserver_sync_callback) stray semi-colon |
| 16 | * ospf_packet.c: include checksum.h, remove the in_cksum extern |
| 17 | * prototypes. |
| 18 | * ospf_te.h: Add braces, quell warning. |
paul | 6d45276 | 2005-11-03 11:15:44 +0000 | [diff] [blame] | 19 | * ospf_packet.c: Change level of some warnings to |
| 20 | informational. |
paul | c8c1521 | 2005-11-04 12:31:39 +0000 | [diff] [blame] | 21 | |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 22 | 2005-10-29 Paul Jakma <paul.jakma@sun.com> |
| 23 | |
| 24 | * (general) RFC3137 stub-router support |
| 25 | * ospfd.h: Add OSPF_OUTPUT_COST_INFINITE define. |
| 26 | (struct ospf_master) Add a OSPF_MASTER_SHUTDOWN flag for |
| 27 | options, to allow shutdown to distinguish between complete |
| 28 | shutdown and shutdown of a subset of ospf instances. |
| 29 | (struct ospf) |
| 30 | Add stub_router_{startup,shutdown_}time, configuration of startup |
| 31 | and shutdown time for stub-router. |
| 32 | Add t_graceful_shutdown struct thread, timer for graceful |
| 33 | shutdown, if needed. |
| 34 | (struct ospf_area) Add stub_router_state - run time state of |
| 35 | stub-router for an area. Add flags for ADMIN, IS and WAS |
| 36 | states. |
| 37 | Add t_stub_router, timer thread to resend router-lsa for an |
| 38 | area. |
| 39 | * ospf_lsa.c: (ospf_link_cost) new simple function to spit out |
| 40 | either the given lnks cost or infinite cost if stub-router is |
| 41 | in effect. |
| 42 | (lsa_link_{ptop,broadcast,virtuallink,ptomp}_set) use |
| 43 | previous function for transit-links. |
| 44 | (ospf_stub_router_timer) timer thread for end of startup stub |
| 45 | router. Change state as required for the area and setup |
| 46 | re-origination of router-lsa. |
| 47 | (ospf_stub_router_check) Check/do whether stub-router should be |
| 48 | enabled, and whether it requires timer to be setup. |
| 49 | (ospf_router_lsa_new) call previous function at top. |
| 50 | (ospf_router_lsa_originate) no external callers, made static. |
| 51 | * ospf_lsa.h: (ospf_router_lsa_originate) removed. |
| 52 | * ospf_main.c: (sigint) make static. |
| 53 | remove call to exit, as ospf_terminate now deals with |
| 54 | exiting. |
| 55 | * ospf_route.c: (ospf_terminate) removed, now in ospfd.c. |
| 56 | * ospf_vty.c: (show_ip_ospf_area) print out state of |
| 57 | stub-router, if active. |
| 58 | (show_ip_ospf) print out configuration of stub-router |
| 59 | support, and details of graceful-shutdown if the timer is |
| 60 | active. |
| 61 | ((no)?ospf_max_metric_router_lsa_{admin,startup,shutdown}) new |
| 62 | commands to (de-)?configure stub-router support. |
| 63 | (config_write_stub_router) write out config of stub-router. |
| 64 | (ospf_config_write) call previous. |
| 65 | (ospf_vty_init) install the new stub-router commands. |
| 66 | * ospfd.c: various functions made static. |
| 67 | (ospf_new) Set defaults for stub-router. Graceful shutdown |
| 68 | is made to default on, just to be adventerous. |
| 69 | (ospf_graceful_shutdown_finish) new function, final part of |
| 70 | shutdown. |
| 71 | (ospf_graceful_shutdown_timer) timer thread wrapper for |
| 72 | graceful-shutdown. |
| 73 | (ospf_graceful_shutdown_check) check whether to setup timer |
| 74 | for shutdown or proceed directly to final shutdown. |
| 75 | (ospf_terminate) moved here from ospf_route.c, call |
| 76 | ospf_finish for each instance. |
| 77 | (ospf_finish) renamed to ospf_finish_final and made static. |
| 78 | (ospf_finish) new function, exported wrapper around |
| 79 | ospf_graceful_shutdown_check. |
| 80 | (ospf_finish_final) complete shutdown of an instance. |
| 81 | Add missing TIMER_OFF's of two timer threads. |
| 82 | (ospf_area_free) opaque self lsa timer should be turned off. |
| 83 | |
paul | b8ad39d | 2005-10-23 15:23:05 +0000 | [diff] [blame] | 84 | 2005-10-23 Paul Jakma <paul.jakma@sun.com> |
| 85 | |
paul | e029d44 | 2005-10-23 15:26:24 +0000 | [diff] [blame] | 86 | * ospf_apiserver.c: (ospf_apiserver_term) This function should |
| 87 | not have side-effects (eg segv) if no apiserver instances are |
| 88 | active, ie be robust. |
paul | b8ad39d | 2005-10-23 15:23:05 +0000 | [diff] [blame] | 89 | * ospf_vty.c: (show_ip_ospf) fix display of SPF timer if it |
| 90 | has not yet been run. |
| 91 | |
paul | f9ad937 | 2005-10-21 00:45:17 +0000 | [diff] [blame] | 92 | 2005-10-21 Paul Jakma <paul.jakma@sun.com> |
| 93 | |
paul | ea4ffc9 | 2005-10-21 20:04:41 +0000 | [diff] [blame] | 94 | * ospf_dump.c: (ospf_timeval_dump) fix ms adjustment, thanks to |
| 95 | Andrew Schorr. |
| 96 | * ospf_vty.c: (ospf_config_write) fix write out of spf timers |
| 97 | configuration. |
| 98 | |
| 99 | 2005-10-21 Paul Jakma <paul.jakma@sun.com> |
| 100 | |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 101 | * (general) SPF millisecond resolution timer with adaptive, |
| 102 | linear back-off holdtime. Prettification of ospf_timer_dump. |
| 103 | * ospf_dump.c: (ospf_timeval_dump) new function. The guts of |
| 104 | ospf_timer_dump, but made to be more dynamic in printing out |
| 105 | the relative timeval, sliding the precision printed out |
| 106 | according to the value. |
| 107 | (ospf_timer_dump) guts moved to ospf_timeval_dump. |
| 108 | * ospf_dump.h: export ospf_timeval_dump. |
| 109 | * ospf_flood.c: (ospf_flood) remove gettimeofday, use |
| 110 | the libzebra exported recent_time instead, as it's not |
| 111 | terribly critical to have time exactly right - the dropped |
| 112 | LSA will be retransmited to us if we don't ACK it. |
| 113 | * ospf_packet.c: (ospf_ls_upd_timer) Ditto, but here we're |
| 114 | not transmitting, just putting LSA back on update transmit list. |
| 115 | * ospfd.h: delay and holdtimes should be unsigned. |
| 116 | Add spf_max_holdtime and spf_hold_multiplier. |
| 117 | Update default defines for delay and hold time to be in msec. |
| 118 | (struct ospf) change the SPF timestamp to a struct timeval. |
| 119 | Remove ospf_timers_spf_(un)?set. |
| 120 | * ospfd.c: (ospf_timers_spf_{set,unset}) removed. |
| 121 | (ospf_new) initialise spf_max_holdtime and spf_hold_multiplier |
| 122 | * ospf_spf.c: (ospf_spf_calculate) SPF timestamp is a timeval |
| 123 | now, update with gettimeofday. |
| 124 | (ospf_spf_calculate_schedule) Change SPF timers to millisecond |
| 125 | resolution. |
| 126 | Make the holdtime be adaptive, with a linear increase in |
| 127 | holdtime ever consecutive SPF run which occurs within holdtime |
| 128 | of previous SPF, bounded by spf_max_holdtime. |
| 129 | * ospf_vty.c: Update spf timers commands. |
| 130 | (ospf_timers_spf_set) trivial helper. |
| 131 | (ospf_timers_throttle_spf_cmd) new command to set SPF delay, |
| 132 | initial hold and max hold times with millisecond resolution. |
| 133 | (ospf_timers_spf_cmd) Deprecated. Accept the old values, |
| 134 | convert to msec, truncate to new limits. |
| 135 | (no_ospf_timers_throttle_spf_cmd) set timers to defaults. |
| 136 | (no_ospf_timers_spf_cmd) deprecated form, same as previous. |
| 137 | (show_ip_ospf_cmd) Display SPF parameters and times. |
| 138 | (show_ip_ospf_neighbour_header) Centralise the 'sh ip os ne' |
| 139 | header. |
| 140 | (show_ip_ospf_neighbor_sub) Fix the field widths. Get rid of |
| 141 | the multiple spaces which were making the lines even longer. |
| 142 | (show_ip_ospf_neighbor_cmd) Use show_ip_ospf_neighbour_header |
| 143 | (show_ip_ospf_neighbor_all_cmd) ditto and fix the field |
| 144 | widths for NBMA neighbours. |
| 145 | (show_ip_ospf_neighbor_int) Use header function. |
| 146 | (show_ip_ospf_nbr_nbma_detail_sub) use sizeof for timebuf, |
| 147 | local array - safer. |
| 148 | (show_ip_ospf_neighbor_detail_sub) ditto |
| 149 | (ospf_vty_init) install the new SPF throttle timer commands. |
| 150 | |
| 151 | 2005-10-21 Paul Jakma <paul.jakma@sun.com> |
| 152 | |
paul | f9ad937 | 2005-10-21 00:45:17 +0000 | [diff] [blame] | 153 | * (general) OSPF fast, sub-second hello and 1s dead-interval |
| 154 | support. |
| 155 | * ospf_dump.c: (ospf_timer_dump) Print out milliseconds too. |
| 156 | Callers typically specify a length of 9, so most see |
| 157 | millisecs unless they specify the additional length. |
| 158 | * ospf_interface.h: (struct ospf_interface) new interface param, |
| 159 | fast_hello. |
| 160 | * ospf_interface.c: (ospf_if_table_lookup) add brackets, |
| 161 | gcc warning fix. |
| 162 | (ospf_new_if_params) Initialise fast_hello param. |
| 163 | (ospf_free_if_params) Check whether fast_hello is configured. |
| 164 | (ospf_if_new_hook) set fast_hello to default. |
| 165 | * ospf_ism.h: Wrap OSPF_ISM_TIMER_ON inside do {} while (0) to |
| 166 | prevent funny side-effects from its if statement when this |
| 167 | macro is used conditionally by other macros. |
| 168 | (OSPF_ISM_TIMER_MSEC_ON) new macro, set in milliseconds. |
| 169 | (OSPF_HELLO_TIMER_ON) new macro to set hello timer according |
| 170 | to whether fast_hello is set. |
| 171 | * ospf_ism.c: Update all setting of the hello timer to use |
| 172 | either OSPF_ISM_TIMER_MSEC_ON or OSPF_HELLO_TIMER_ON. The |
| 173 | former is used when hello is to be sent immediately. |
| 174 | * ospf_nsm.c: ditto |
| 175 | * ospf_packet.c: (ospf_hello) hello-interval is not checked |
| 176 | for mismatch if fast_hello is set. |
| 177 | (ospf_read) Annoying nit, fix "no ospf_interface" to be debug |
| 178 | rather than a warning, as it can be perfectly normal to |
| 179 | receive packets when logical subnets are used. |
| 180 | (ospf_make_hello) Set hello-interval to 0 if fast-hellos are |
| 181 | configured. |
| 182 | * ospf_vty.c: (ospf_auto_cost_reference_bandwidth) annoying |
| 183 | nit, don't vty_out if this command is given, it gets tired |
| 184 | quick. |
| 185 | (show_ip_ospf_interface_sub) Print the hello-interval |
| 186 | according to whether fast-hello is set or not. |
| 187 | Print the extra 5 millisec characters from (ospf_timer_dump) |
| 188 | if fast-hello is configured. |
| 189 | (ospf_vty_dead_interval_set) new function, common to all |
| 190 | forms of dead-interval command, to set dead-interval and |
| 191 | fast-hello correctly. If a dead-interval is given, unset |
| 192 | fast-hello, else if a hello-multiplier is set, set |
| 193 | dead-interval to 1 and fast-hello to given multiplier. |
| 194 | (ip_ospf_dead_interval_addr_cmd) use |
| 195 | ospf_vty_dead_interval_set(). |
| 196 | (ip_ospf_dead_interval_minimal_addr_cmd) ditto. |
| 197 | (no_ip_ospf_dead_interval) Unset fast-hello. |
| 198 | (no_ip_ospf_hello_interval) Bug-fix, unset of hello-interval |
| 199 | should set it to OSPF_HELLO_INTERVAL_DEFAULT, not |
| 200 | OSPF_ROUTER_DEAD_INTERVAL_DEFAULT. |
| 201 | (config_write_interface) Write out fast-hello. |
| 202 | (ospf_config_write) Write a comment about |
| 203 | "auto-cost reference-bandwidth" having to be equal on all |
| 204 | routers. Hopefully just as noticeable as old practice of |
| 205 | writing to vty, but less annoying. |
| 206 | (ospf_vty_if_init) install the two new dead-interval |
| 207 | commands. |
| 208 | * ospfd.h: Add defines for OSPF_ROUTER_DEAD_INTERVAL_MINIMAL |
| 209 | and OSPF_FAST_HELLO_DEFAULT. |
| 210 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 211 | 2005-10-18 Paul Jakma <paul.jakma@sun.com> |
| 212 | |
| 213 | * (general) SPF memory management cleanup and fix for rare |
| 214 | double-free bug. |
| 215 | * ospf_spf.h: (struct vertex_parent) New struct to hold parent |
| 216 | specific data, eg the backlink and the parent vertex pointer, |
| 217 | and point to the appropriate general struct vertex_nexthop. |
| 218 | (struct vertex_nexthop) remove parent vertex pointer, so |
| 219 | this struct can be shared across vertices. |
| 220 | (struct vertex) rename list child to list children. Remove |
| 221 | list of nexthops, replace with list of vertex_parents. |
| 222 | * ospf_spf.c: (update_stat) trivial, remove cast from void *. |
| 223 | (vertex_nexthop_new) remove init of parent - field is gone |
| 224 | from struct vertex_nexthop. |
| 225 | (ospf_canonical_nexthops_free) Remove the canonical |
| 226 | vertex_nexthop memory objects. These are the vertex_nexthops |
| 227 | attached to the first level of router vertices from the root. |
| 228 | (vertex_parent_new) new function, create a vertex_parent. |
| 229 | (vertex_parent_free) ditto, but free it. |
| 230 | (ospf_vertex_new) Update to match changes to struct vertex. |
| 231 | (ospf_vertex_free) Recursively free a struct vertex and its |
| 232 | children. The parent list is used as a reference count. |
| 233 | vertex_nexthops must be free seperately, if required. |
| 234 | (ospf_vertex_dump) update to match struct vertex changes. |
| 235 | Print out backlink of parents too. |
| 236 | (ospf_vertex_add_parent) ditto. |
| 237 | (ospf_lsa_has_link) update comment. |
| 238 | (ospf_nexthop_add_unique) removed, not needed anymore. |
| 239 | (ospf_nexthop_merge) ditto. |
| 240 | (ospf_spf_consider_nexthop) renamed to ospf_spf_add_parent. |
| 241 | Simplified to just create vertex_parent and add it. |
| 242 | (ospf_spf_flush_parents) new function, flush out the parent |
| 243 | list. |
| 244 | (ospf_nexthop_calculation) Take the relevant route_lsa_link |
| 245 | as an argument, which simplifies things and removes the need |
| 246 | for the hack in ospf_nexthop_add_unique - ospf_spf_next |
| 247 | already knew exactly which link the cost calculated was for. |
| 248 | Update to match struct vertex changes too. |
| 249 | (ospf_spf_next) Don't create a vertex for W unnecessarily, if |
| 250 | it's there's a vertex already created for W, use it, and |
| 251 | hence there's no need to free it either. |
| 252 | Update some manipulation/comparisons of distance to match. |
| 253 | Flush the parent list if a lower cost path is found. |
| 254 | (ospf_spf_route_free) unused, removed. |
| 255 | (ospf_spf_dump) match the struct vertex changes, and dump the |
| 256 | ifname if possible. |
| 257 | (ospf_spf_calculate) At end of SPF, free the canonical nexthops |
| 258 | and call ospf_vertex_free on the root vertex to free the |
| 259 | entire tree. |
| 260 | * ospf_interface.c: (ospf_vl_set_params) match struct vertex |
| 261 | changes. |
| 262 | * ospf_route.c: (ospf_intra_route_add) ditto |
| 263 | (ospf_route_copy_nexthops_from_vertex) ditto |
| 264 | |
paul | 3623814 | 2005-10-11 04:12:54 +0000 | [diff] [blame] | 265 | 2005-10-11 Paul Jakma <paul.jakma@sun.com> |
| 266 | |
| 267 | * ospf_api.c: sign warnings. |
| 268 | * ospf_apiserver.c: sign warning and convert all the struct |
| 269 | in_addr initialisations so as not to make assumptions about |
| 270 | how this struct is organised, initialise the s_addr member |
| 271 | explicitely. |
| 272 | * ospf_packet.c: Add const qualifier to auth_key. |
| 273 | |
vincent | 77df1f7 | 2005-10-06 07:46:22 +0000 | [diff] [blame] | 274 | 2005-10-06 Alain Ritoux <alain.ritoux@6wind.com> |
| 275 | |
| 276 | * ospf_snmp.c: Avoid mixing interface and ospf_interface objects |
| 277 | which now allows snmpwalk to work with ospfIfTable and |
| 278 | also with ospfIfMetricTable |
| 279 | |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 280 | 2005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 281 | |
| 282 | * ospf_dump.c: Remove local hard-coded table ospf_redistributed_proto. |
| 283 | (ospf_redist_string) New function implemented using new library |
| 284 | function zebra_route_string(). Note that there are a few differences |
| 285 | in the output that will result: the new function returns strings |
| 286 | that are lower-case, whereas the old table was mixed case. Also, |
| 287 | the old table mapped ZEBRA_ROUTE_OSPF6 to "OSPFv3", whereas the |
| 288 | new function returns "ospf6". |
| 289 | * ospfd.h: Remove extern struct message ospf_redistributed_proto[], |
| 290 | and add extern const char *ospf_redist_string(u_int route_type) |
| 291 | instead. |
| 292 | * ospf_asbr.c: (ospf_external_info_add) In two messages, use |
| 293 | ospf_redist_string instead of LOOKUP(ospf_redistributed_proto). |
| 294 | * ospf_vty.c: Remove local hard-coded table distribute_str. |
| 295 | (config_write_ospf_redistribute,config_write_ospf_distribute): Use |
| 296 | new library function zebra_route_string() instead of distribute_str[]. |
| 297 | * ospf_zebra.c: (ospf_redistribute_set,ospf_redistribute_unset, |
| 298 | ospf_redistribute_default_set,ospf_redistribute_check) |
| 299 | In debug messages, use ospf_redist_string() instead of |
| 300 | LOOKUP(ospf_redistributed_proto). |
| 301 | |
jardin | 6638c1a | 2005-10-01 00:08:54 +0000 | [diff] [blame] | 302 | 2005-09-30 Vincent Jardin <vincent.jardin@6wind.com> |
| 303 | |
| 304 | * ospf_dump.c, ospf_ia.c, ospf_spf.c, ospf_ase.c: |
| 305 | remove unused DEBUG |
| 306 | |
vincent | ba68253 | 2005-09-29 13:52:57 +0000 | [diff] [blame] | 307 | 2005-09-29 Alain Ritoux <alain.ritoux@6wind.com> |
| 308 | |
vincent | 5e4914c | 2005-09-29 16:34:30 +0000 | [diff] [blame] | 309 | * ospf_ism.c: generate SNMP traps on Interface state change |
| 310 | * ospf_nsm.c: generate SNMP traps on Neighbour state change |
| 311 | * ospf_snmp.[ch]: support for SNMP traps for interface and neighbours. |
| 312 | |
| 313 | 2005-09-29 Alain Ritoux <alain.ritoux@6wind.com> |
| 314 | |
vincent | ba68253 | 2005-09-29 13:52:57 +0000 | [diff] [blame] | 315 | * ospf_vty.c: forece default route LSA to be re_issued whenever |
| 316 | cost is changed ( [no] ip ospf area XXX default-cost YYY) |
| 317 | Support ignore-mtu option |
| 318 | * ospfd.h: define OSPF_MTU_IGNORE_DEFAULT |
| 319 | * ospf_packet.c: support ignore-mtu option |
| 320 | * ospf_interface.h: field added for skipping MTU check |
| 321 | * ospf_interface.c: fix memory leak in ospf_crypt_key_delete() |
| 322 | Set mtu_ignore field to default value |
| 323 | * ospf_abr.[ch]: export ospf_abr_announce_network_to_area() |
| 324 | * ospf_ism.h: add MACRO to convert internal ISM status into SNMP |
| 325 | correct values |
| 326 | * ospf_snmp.c: add sanity check on LSA type in lsdb_lookup_next() |
| 327 | convert OSPFIFSTATE internal status into SNMP values |
| 328 | |
vincent | c1a03d4 | 2005-09-28 15:47:44 +0000 | [diff] [blame] | 329 | 2005-09-28 Alain Ritoux <alain.ritoux@6wind.com> |
| 330 | |
| 331 | * ospf_packet.c: use new md5 API |
| 332 | |
ajs | 5339cfd | 2005-09-19 13:28:05 +0000 | [diff] [blame] | 333 | 2005-09-19 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 334 | |
| 335 | * ospf_lsa.h: (ospf_external_lsa_flush) Comment out the 5th argument |
| 336 | (nexthop) since it is not used in the function (except inside |
| 337 | some commented-out code). |
| 338 | * ospf_lsa.c: (ospf_external_lsa_flush,ospf_external_lsa_refresh) |
| 339 | Comment out the 5th argument to ospf_external_lsa_flush. |
| 340 | * ospf_asbr.c: (ospf_redistribute_withdraw) Comment out 5th arg |
| 341 | to ospf_external_lsa_flush. |
| 342 | * ospf_vty.c: (no_ospf_default_information_originate) Eliminate 5th |
| 343 | uninitialized nexthop arg to ospf_external_lsa_flush. |
| 344 | * ospf_zebra.c: (ospf_zebra_read_ipv4) Comment out 5th arg |
| 345 | to ospf_external_lsa_flush. |
| 346 | * ospfd.c: (ospf_network_set) Comment out 5th arg |
| 347 | to ospf_external_lsa_flush. |
| 348 | |
ajs | e6a0bf9 | 2005-09-17 18:53:38 +0000 | [diff] [blame] | 349 | 2005-09-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 350 | |
| 351 | * ospf_opaque.c: |
| 352 | (ospf_opaque_lsa_refresh_schedule,ospf_opaque_lsa_flush_schedule) |
| 353 | No need to call ospf_lookup(), just use lsa0->area->ospf instead. |
| 354 | |
hasso | bb5b755 | 2005-08-21 20:01:15 +0000 | [diff] [blame] | 355 | 2005-08-21 Hasso Tepper <hasso at quagga.net> |
| 356 | |
| 357 | * ospf_vty.c: Make "show ip ospf neighbor xxx" commands work. |
| 358 | Interface should be specified by name now. |
| 359 | |
hasso | 54bedb5 | 2005-08-17 13:31:47 +0000 | [diff] [blame] | 360 | 2005-08-17 Hasso Tepper <hasso at quagga.net> |
| 361 | |
| 362 | * ospf_vty.c: Check carefully if interface exists before trying to |
| 363 | print info about it. |
| 364 | |
hasso | 01018ce | 2005-08-05 07:40:15 +0000 | [diff] [blame] | 365 | 2005-08-05 Hasso Tepper <hasso at quagga.net> |
| 366 | |
| 367 | * ospf_zebra.c: Don't assert/stop before type == ZEBRA_ROUTE_MAX if |
| 368 | dealing with routemaps. There is ospf->route_map[ZEBRA_ROUTE_MAX] |
| 369 | for default-information. |
| 370 | |
paul | c898775 | 2005-07-26 06:07:22 +0000 | [diff] [blame] | 371 | 2005-07-26 Paul Jakma <paul.jakma@sun.com> |
| 372 | |
| 373 | * ospf_abr.c: (ospf_abr_announce_network_to_area) SET_FLAG |
| 374 | should be on lsa not old, which may be freed for one thing, |
| 375 | obviously. |
| 376 | |
paul | d57834f | 2005-07-12 20:04:22 +0000 | [diff] [blame] | 377 | 2005-07-12 Paul Jakma <paul.jakma@sun.com> |
| 378 | |
| 379 | * ospfd.h: add OSPF_ABR_DEFAULT for convenience, make |
| 380 | OSPF_ABR_CISCO be the default ABR type. |
| 381 | * ospfd.c: (ospf_new) initialise abr_type to OSPF_ABR_DEFAULT |
| 382 | * ospf_vty.c: (no_ospf_abr_type_cmd) add standard as a negatable |
| 383 | abr_type. default abr_type should be OSPF_ABR_DEFAULT. |
| 384 | (ospf_config_write) test whether default abr_type against |
| 385 | OSPF_ABR_DEFAULT, rather than any specific ABR_TYPE. |
| 386 | |
hasso | 8469bd7 | 2005-06-20 20:50:10 +0000 | [diff] [blame] | 387 | 2005-06-20 Hasso Tepper <hasso at quagga.net> |
hasso | f4833e9 | 2005-06-20 20:42:26 +0000 | [diff] [blame] | 388 | |
| 389 | * ospf_nsm.c: Make database exchange for NSSA database work. |
| 390 | |
paul | 7461d45 | 2005-06-13 13:57:16 +0000 | [diff] [blame] | 391 | 2005-06-13 Paul Jakma <paul.jakma@sun.com> |
| 392 | |
| 393 | * ospf_spf.c: Try get more information on a SEGV under |
| 394 | ospf_spf_vertex_add_parent. |
| 395 | (ospf_vertex_free) NULL out the child and nexthop lists |
| 396 | (ospf_vertex_add_parent) nexthop and child can not be NULL |
| 397 | vertex_nexthop's parent->child list can not be NULL |
| 398 | (ospf_spf_next) w and cw are per-loop iteration variables, move |
| 399 | declarations into loop body. |
| 400 | |
hasso | 1ddd729 | 2005-06-07 19:54:04 +0000 | [diff] [blame] | 401 | 2005-06-07 Hasso Tepper <hasso at quagga.net> |
| 402 | |
| 403 | * ospf_apiserver.c: Fix obvious error in notifying clients about ISM |
| 404 | changes - oi->ifp->status doesn't give to us info about ISM, |
| 405 | oi->state does. |
| 406 | |
paul | 7e44086 | 2005-06-01 11:20:51 +0000 | [diff] [blame] | 407 | 2005-06-01 Akihiro Mizutani <mizutani@net-chef.net> |
| 408 | |
| 409 | * ospf_ism.c (ospf_elect_bdr/ospf_elect_dr): Fix DR election bug. |
| 410 | |
paul | 500e418 | 2005-05-26 17:11:13 +0000 | [diff] [blame] | 411 | 2005-05-26 Paul Jakma <paul.jakma@sun.com> |
| 412 | |
| 413 | * ospf_abr.c: (ospf_abr_update_aggregate) Fix comment, cost bug itself |
| 414 | had been fixed long ago by Sowmini. |
| 415 | |
paul | a3387a4 | 2005-05-18 23:29:57 +0000 | [diff] [blame] | 416 | 2005-05-19 Paul Jakma <paul.jakma@sun.com> |
| 417 | |
| 418 | * ospf_interface.c: (ospf_if_table_lookup) Fix a serious bug |
| 419 | a less serious one. |
| 420 | 1: this function is supposed to lookup |
| 421 | entries in the oifs ospf_interface route_table and return either |
| 422 | an existing oi or NULL to indicate not found, its caller depends |
| 423 | on this, yet this function uses route_node_get which /always/ |
| 424 | returns a route_node - one is created if none exists. Use |
| 425 | route_node_lookup instead. This should fix root cause of the |
| 426 | reports of the (ospf_add_to_if) assert being hit. |
| 427 | 2: oi's are inserted into this table with prefixlength set to |
| 428 | /32 (indeed, it should be a hash table, not a route_table), |
| 429 | however prefixlength to lookup was not changed, if no valid entry |
| 430 | can be inserted other than /32, then nothng but /32 should be |
| 431 | looked up. This possibly only worked by fluke.. |
| 432 | Fix confirmed by 2 reporters (one list, one IRC), definitely a |
| 433 | backport candidate once it has been incubated in HEAD for a while. |
| 434 | Thanks to Patrick Friedel and Ivan Warren for testing. |
| 435 | |
paul | 69310a6 | 2005-05-11 18:09:59 +0000 | [diff] [blame] | 436 | 2005-05-11 Paul Jakma <paul.jakma@sun.com> |
| 437 | |
| 438 | * (general) Fix memory leaks in opaque AS-scope LSAs, reported and |
| 439 | with much debugging done by by scott collins <scollins@agile.tv>. |
| 440 | * ospf_lsa.c: (ospf_discard_from_db) dont call |
| 441 | ospf_ase_unregister_external_lsa for opaque-lsa's, opaques are |
| 442 | never registered with ase in the first place. |
| 443 | * ospf_packet.c: (general) Disabuse opaque related code of its |
| 444 | tendency to try gather up things into temporary lists. |
| 445 | (ospf_ls_upd) remove the temporary lists opaque uses, call |
| 446 | opaque functions inline, just like all other types. |
| 447 | (ospf_ls_ack) ditto. |
| 448 | (ospf_recv_packet) fixup sign warning. |
| 449 | * ospf_opaque.c: (general) fix the unneeded use of lists, and |
| 450 | untwist some of the logic. |
| 451 | (ospf_opaque_self_originated_lsa_received) take a single LSA |
| 452 | as argument, not a list of them. Remove the list loop. Logic |
| 453 | otherwise unchanged. |
| 454 | (ospf_opaque_ls_ack_received) Mostly ditto. But untwist the logic, |
| 455 | move the actions up into the switch block, remove the goto's and |
| 456 | sanitise the logic near the end a bit. |
| 457 | * ospf_opaque.h: Adjust definitions of aforementioned functions |
| 458 | in ospf_opaque.c to match. |
| 459 | |
paul | 42c9819 | 2005-05-07 02:22:51 +0000 | [diff] [blame] | 460 | 2005-05-07 Yar Tikhiy <yar@comp.chem.msu.su> |
| 461 | |
| 462 | * ospf_network.c: Log ifindex on multicast membership leave/join |
| 463 | events. |
| 464 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 465 | 2005-05-06 Paul Jakma <paul.jakma@sun.com> |
| 466 | |
| 467 | * (general) extern and static qualifiers added. |
| 468 | unspecified arguments in definitions fixed, typically they should |
| 469 | be 'void'. |
| 470 | function casts added for callbacks. |
| 471 | Guards added to headers which lacked them. |
| 472 | Proper headers included rather than relying on incomplete |
| 473 | definitions. |
| 474 | gcc noreturn function attribute where appropriate. |
| 475 | * ospf_opaque.c: remove the private definition of ospf_lsa's |
| 476 | ospf_lsa_refresh_delay. |
| 477 | * ospf_lsa.h: export ospf_lsa_refresh_delay |
| 478 | * ospf_packet.c: (ospf_make_md5_digest) make *auth_key const, |
| 479 | correct thing to do - removes need for the casts later. |
| 480 | * ospf_vty.c: Use vty.h's VTY_GET_INTEGER rather than ospf_vty's |
| 481 | home-brewed versions, shuts up several warnings. |
| 482 | * ospf_vty.h: remove VTY_GET_UINT32. VTY_GET_IPV4_ADDRESS and |
| 483 | VTY_GET_IPV4_PREFIX moved to lib/vty.h. |
| 484 | * ospf_zebra.c: (ospf_distribute_list_update_timer) hacky |
| 485 | overloading of the THREAD_ARG pointer should at least use |
| 486 | uintptr_t. |
| 487 | |
paul | 9e67dc2 | 2005-04-15 12:10:17 +0000 | [diff] [blame] | 488 | 2005-04-15 Zhipeng Gong <zpgong@cdc.3upsystems.com> |
| 489 | |
| 490 | * ospf_abr.c: (ospf_abr_announce_network_to_area) dont forget |
| 491 | to approve LSAs for the case where metric has changed, lsa gets |
| 492 | flushed otherwise. (backport candidate). |
| 493 | |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 494 | 2005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 495 | |
| 496 | * ospf_zebra.c (ospf_zebra_add): Call zclient_send_message instead |
| 497 | of writen. |
| 498 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 499 | 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 500 | |
ajs | e4319de | 2005-04-02 23:23:55 +0000 | [diff] [blame] | 501 | * ospf_interface.h: (ospf_if_lookup_by_name) Remove declaration of a |
| 502 | function that does not exist. |
| 503 | |
| 504 | 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 505 | |
ajs | 21fefa9 | 2005-04-02 23:16:41 +0000 | [diff] [blame] | 506 | * ospf_zebra.c: (zebra_interface_if_lookup) Must use |
| 507 | if_lookup_by_name_len. |
| 508 | |
| 509 | 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 510 | |
ajs | a349198 | 2005-04-02 22:50:38 +0000 | [diff] [blame] | 511 | * ospf_interface.c: (ospf_vl_new) Use strnlen to fix call to if_create. |
| 512 | |
| 513 | 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 514 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 515 | * ospf_vty.c: (show_ip_ospf_interface_sub) Show ifindex and interface |
| 516 | flags to help with debugging. |
| 517 | * ospf_zebra.c: (ospf_interface_delete) After deleting, set ifp->ifindex |
| 518 | to IFINDEX_INTERNAL. |
| 519 | (zebra_interface_if_lookup) Make function static. Tighten up code. |
| 520 | |
ajs | aca72fd | 2005-03-31 15:18:21 +0000 | [diff] [blame] | 521 | 2005-03-31 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 522 | |
| 523 | * ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging |
| 524 | is turned on. |
| 525 | |
ajs | fd651fa | 2005-03-29 16:08:16 +0000 | [diff] [blame] | 526 | 2005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 527 | |
ajs | a608bbf | 2005-03-29 17:03:49 +0000 | [diff] [blame] | 528 | * ospf_zebra.c: (ospf_interface_state_up) If the MTU of an operative |
| 529 | interface changes, print a debug message and call ospf_if_reset() |
| 530 | to simulate down/up on the interface. |
| 531 | * ospf_interface.h: Declare new function ospf_if_reset(). |
| 532 | * ospf_interface.c: (ospf_if_reset) New function to call ospf_if_down |
| 533 | and ospf_if_up for all ospf interfaces attached to an interface. |
| 534 | |
| 535 | 2005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 536 | |
ajs | 5dcbdf8 | 2005-03-29 16:13:49 +0000 | [diff] [blame] | 537 | * ospf_packet.c: (ospf_write_frags) Enhance error message to |
| 538 | show MTU. Also make function static. |
| 539 | (ospf_write) Enhance error message to show interface name and MTU. |
| 540 | Also make function static. |
| 541 | |
| 542 | 2005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 543 | |
| 544 | * ospf_vty.c: (show_ip_ospf_interface_sub) Display interface MTU and |
| 545 | bandwidth; this is useful for debugging problems. Also, the function |
| 546 | should be static. |
ajs | fd651fa | 2005-03-29 16:08:16 +0000 | [diff] [blame] | 547 | |
hasso | 1b63904 | 2005-03-27 13:32:25 +0000 | [diff] [blame] | 548 | 2005-03-27 Hasso Tepper <hasso at quagga.net> |
| 549 | |
| 550 | * ospf_snmp.c: Don't crash in snmp query if ospf instance doesn't |
| 551 | exist at all. |
| 552 | |
hasso | 343f5cc | 2005-03-25 19:48:40 +0000 | [diff] [blame] | 553 | 2005-03-25 Hasso Tepper <hasso at quagga.net> |
| 554 | |
| 555 | * ospfd.h: Include log.h, fixes compile with gcc-4.0. |
| 556 | |
ajs | 9dbc797 | 2005-03-13 19:27:22 +0000 | [diff] [blame] | 557 | 2005-03-13 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 558 | |
| 559 | * ospf_lsa.c: (ospf_lsa_refresh_walker) If the system clock jumps |
| 560 | backward, then current time may be less than |
| 561 | ospf->lsa_refresher_started. This was causing invalid values |
| 562 | for ospf->lsa_refresh_queue.index resulting in infinite loops. |
| 563 | Problem fixed by casting the expression to unsigned before taking |
| 564 | the modulus. |
| 565 | |
ajs | 5c33349 | 2005-02-23 15:43:01 +0000 | [diff] [blame] | 566 | 2005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 567 | |
| 568 | * ospfd.h: Add new field struct stream *ibuf to struct ospf. |
| 569 | * ospfd.c: (ospf_new) Check return code from ospf_sock_init. |
| 570 | Allocate ibuf using stream_new(OSPF_MAX_PACKET_SIZE+1). |
| 571 | (ospf_finish) Call stream_free(ospf->ibuf. |
| 572 | * ospf_packet.c: (ospf_read) Call stream_reset(ospf->ibuf) and then |
| 573 | pass it to ospf_recv_packet for use in receiving the packet |
| 574 | (instead of allocating a new stream for each packet received). |
| 575 | Eliminate all calls to stream_free(ibuf). |
| 576 | (ospf_recv_packet) The struct stream *ibuf is now passed in as |
| 577 | an argument. No need to use recvfrom to peek at the packet |
| 578 | header (to see how big it is), just use ospf->ibuf which is |
| 579 | always large enough (this eliminates a system call to recvfrom). |
| 580 | Therefore, no need to allocate a stream just for this packet, |
| 581 | and no need to free it when done. |
| 582 | |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 583 | 2005-02-23 Vincenzo Eramo <eramo at infocom.ing.uniroma1.it> |
| 584 | |
| 585 | * ospf_lsa.h: New flag to the LSA structure for the SPF calculation. |
| 586 | * ospf_lsdb.h: Export ospf_lsdb_clean_stat() function. |
| 587 | * ospf_spf.h: Add link to the LSA stat structure into vertex. |
| 588 | * ospf_spf.c: New functions cmp() and update_stat() to manage |
| 589 | candidates. Remove ospf_spf_has_vertex(), ospf_vertex_lookup(), |
| 590 | ospf_install_candidate() and ospf_spf_register() functions not needed |
| 591 | any more. Update ospf_vertex_new(), ospf_spf_next() and |
| 592 | ospf_spf_calculate() functions to use pqueue instead of linked list. |
| 593 | |
hasso | e40dcce | 2005-02-21 14:58:42 +0000 | [diff] [blame] | 594 | 2005-02-21 Hasso Tepper <hasso at quagga.net> |
| 595 | |
| 596 | * ospf_ase.c: Don't show messages related to the ase calculations if |
| 597 | we are not debugging. |
| 598 | |
hasso | 306541b | 2005-02-19 17:58:40 +0000 | [diff] [blame] | 599 | 2005-02-19 Hasso Tepper <hasso at quagga.net> |
| 600 | |
| 601 | * ospf_api.h: char isn't always signed, but it has to be it here. |
| 602 | |
paul | fa81b71 | 2005-02-19 01:19:20 +0000 | [diff] [blame] | 603 | 2005-02-19 Paul Jakma <paul.jakma@sun.com> |
| 604 | |
| 605 | * ospf_packet.c: (ospf_stream_copy) remove |
| 606 | (ospf_packet_dup) use stream_copy instead of ospf_stream_copy |
| 607 | |
ajs | 038163f | 2005-02-17 19:55:59 +0000 | [diff] [blame] | 608 | 2005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 609 | |
| 610 | * ospf_packet.c: (ospf_recv_packet) If there is somehow a runt |
| 611 | packet in the queue, it must be discarded. Improve warning messages. |
| 612 | Fix scope to static. |
| 613 | (ospf_read) Fix bug: should reset the read thread in all cases |
| 614 | to make sure we continue to get incoming messages. |
| 615 | |
paul | 658b03a | 2005-02-15 10:10:55 +0000 | [diff] [blame] | 616 | 2005-02-15 Paul Jakma <paul.jakma@sun.com> |
| 617 | |
| 618 | * ospf_packet.c: (ospf_recv_packet) Fix silly error wrt allocating |
| 619 | ibuf. Thanks Andrew. |
| 620 | |
paul | bfdc44a | 2005-02-14 23:48:42 +0000 | [diff] [blame] | 621 | 2005-02-14 Paul Jakma <paul.jakma@sun.com> |
| 622 | |
| 623 | * ospf_packet.c: (ospf_recv_packet) use stream_recvmsg. |
| 624 | |
hasso | 082253f | 2005-02-11 08:31:54 +0000 | [diff] [blame] | 625 | 2005-02-11 Hasso Tepper <hasso at quagga.net> |
| 626 | |
| 627 | * ospf_lsdb.c: Fix sum of checksums calculation. |
| 628 | |
ajs | 083ee9d | 2005-02-09 15:35:50 +0000 | [diff] [blame] | 629 | 2005-02-09 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 630 | |
| 631 | * ospf_packet.c: (ospf_write) If sendmsg fails, give more info in the |
| 632 | error message. |
| 633 | |
ajs | ba6454e | 2005-02-08 15:37:30 +0000 | [diff] [blame] | 634 | 2005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 635 | |
ajs | 8cfde37 | 2005-02-08 15:59:16 +0000 | [diff] [blame] | 636 | * ospf_interface.h: Reduce structure padding by putting new u_char |
| 637 | field multicast_memberships in a better spot (grouped with |
| 638 | other u_char fields type and state). |
| 639 | |
| 640 | 2005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 641 | |
ajs | ba6454e | 2005-02-08 15:37:30 +0000 | [diff] [blame] | 642 | * ospf_interface.h: Improve passive_interface comment. Add new |
| 643 | multicast_memberships bitmask to struct ospf_interface to track |
| 644 | active multicast subscriptions. Declare new function |
| 645 | ospf_if_set_multicast. |
| 646 | * ospf_interface.c: (ospf_if_set_multicast) New function to configure |
| 647 | multicast memberships properly based on the current |
| 648 | multicast_memberships status and the current values of the |
| 649 | ospf_interface state, type, and passive_interface status. |
| 650 | (ospf_if_up) Remove call to ospf_if_add_allspfrouters (this is |
| 651 | now handled by ism_change_state's call to ospf_if_set_multicast). |
| 652 | (ospf_if_down) Remove call to ospf_if_drop_allspfrouters (now |
| 653 | handled by ism_change_state). |
| 654 | * ospf_ism.c: (ospf_dr_election) Remove logic to join or leave |
| 655 | the DRouters multicast group (now handled by ism_change_state's call |
| 656 | to ospf_if_set_multicast). |
| 657 | (ism_change_state) Add call to ospf_if_set_multicast to change |
| 658 | multicast memberships as necessary to reflect the new interface state. |
| 659 | * ospf_packet.c: (ospf_hello) When a Hello packet is received on a |
| 660 | passive interface: 1. Increase the severity of the error message |
| 661 | from LOG_INFO to LOG_WARNING; 2. Add more information to the error |
| 662 | message (packet destination address and interface address); |
| 663 | and 3. If the packet was sent to ospf-all-routers, then try |
| 664 | to fix the multicast group memberships. |
| 665 | (ospf_read) When a packet is received on an interface whose state |
| 666 | is ISM_Down, enhance the warning message to show the packet |
| 667 | destination address, and try to update/fix the multicast group |
| 668 | memberships if the packet was sent to a multicast address. |
| 669 | When a packet is received for ospf-designated-routers, but the |
| 670 | current interface state is not DR or BDR, then increase the |
| 671 | severity level of the error message from LOG_INFO to LOG_WARNING, |
| 672 | and try to fix the multicast group memberships. |
| 673 | * ospf_vty.c: (ospf_passive_interface) Call ospf_if_set_multicast for |
| 674 | any ospf interface that may have changed from active to passive. |
| 675 | (no_ospf_passive_interface) Call ospf_if_set_multicast for |
| 676 | any ospf interface that may have changed from passive to active. |
| 677 | (show_ip_ospf_interface_sub) Show multicast group memberships. |
| 678 | |
paul | 3a9eb09 | 2005-02-08 11:29:41 +0000 | [diff] [blame] | 679 | 2005-02-08 Paul Jakma <paul@dishone.st> |
| 680 | |
| 681 | * ospf_packet.c: (various) Remove unneeded stream_set_putp abuse. |
| 682 | |
ajs | 847947f | 2005-02-02 18:38:48 +0000 | [diff] [blame] | 683 | 2005-02-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 684 | |
| 685 | * ospf_packet.c: (ospf_read) Fix bug: must check for state ISM_Down, |
| 686 | not for event ISM_InterfaceDown. And improve the message by |
| 687 | adding the interface flags. |
| 688 | |
ajs | 0b7d97d | 2005-01-30 17:24:02 +0000 | [diff] [blame] | 689 | 2005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 690 | |
| 691 | * ospf_network.c: (ospf_sock_init) Save errno before calling |
| 692 | ospfd_privs.change. |
| 693 | |
ajs | c3eab87 | 2005-01-29 15:52:07 +0000 | [diff] [blame] | 694 | 2005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 695 | |
| 696 | * ospf_packet.c: (ospf_packet_add) If oi->obuf is NULL, print |
| 697 | an error message and return. |
| 698 | (ospf_read) If the interface state is ISM_InterfaceDown, issue |
| 699 | a warning message and ignore the packet. |
| 700 | |
gdt | 86f1fd9 | 2005-01-10 14:20:43 +0000 | [diff] [blame] | 701 | 2005-01-10 Greg Troxel <gdt@fnord.ir.bbn.com> |
| 702 | |
| 703 | * ospf_packet.h: Remove commented out definition of |
| 704 | OSPF_MAX_PACKET; neither it or the uncommented one are used any more. |
| 705 | |
| 706 | * ospf_packet.c (ospf_make_ls_upd): Leave room for authentication |
| 707 | when deciding if an update will fit. |
| 708 | (ospf_packet_authspace): Factor out calculation of size required |
| 709 | for authentication. |
| 710 | (ospf_make_db_desc): Use ospf_max_packet, not OSPF_MAX_PACKET. |
| 711 | Don't confuse readers that there is a macro. |
| 712 | |
ajs | 3dc56b5 | 2004-12-30 15:11:19 +0000 | [diff] [blame] | 713 | 2004-12-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 714 | |
| 715 | * ospf_network.c: Improve all setsockopt error messages to give detailed |
| 716 | information on the arguments. |
| 717 | |
ajs | b87f772 | 2004-12-29 20:41:26 +0000 | [diff] [blame] | 718 | 2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 719 | |
ajs | 17eaa72 | 2004-12-29 21:04:48 +0000 | [diff] [blame] | 720 | * ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done" |
| 721 | messages from LOG_WARNING to LOG_INFO, since this seems to be |
| 722 | normal. |
| 723 | |
| 724 | 2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 725 | |
ajs | b87f772 | 2004-12-29 20:41:26 +0000 | [diff] [blame] | 726 | * ospf_packet.c: (ospf_read) Always look up the interface if |
| 727 | ospf_recv_packet returns NULL ifp, since some platforms such |
| 728 | as Solaris 8 appear to support ifindex retrieval but don't. |
| 729 | |
hasso | 1d80628 | 2004-12-22 09:43:20 +0000 | [diff] [blame] | 730 | 2004-12-22 Hasso Tepper <hasso at quagga.net> |
| 731 | |
| 732 | * ospf_dump.c: Show debug configuration in vtysh. |
hasso | c6b8781 | 2004-12-22 13:09:59 +0000 | [diff] [blame] | 733 | * ospf_vty.c: Fix "show ip ospf" output. Router can't be elected in |
| 734 | any case if it's configured as "translate-never". |
hasso | fe71a97 | 2004-12-22 16:16:02 +0000 | [diff] [blame] | 735 | * ospf_lsdb.[ch]: New function to calculate sum of checksums. |
| 736 | * ospf_vty.c: Bugfix to show really number of AS external LSAs, not |
| 737 | number of all LSAs with AS scope, this includes opaque as LSAs as |
| 738 | well, show this number separately. Show numbers and sums of |
| 739 | checksums for each type of LSAs. |
| 740 | * ospf_lsa.c: Calculate checksum before putting LSA into database. |
hasso | 1d80628 | 2004-12-22 09:43:20 +0000 | [diff] [blame] | 741 | |
ajs | bc18d61 | 2004-12-15 15:07:19 +0000 | [diff] [blame] | 742 | 2004-12-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 743 | |
| 744 | * ospf_interface.h: Declare new function ospf_default_iftype. |
| 745 | * ospf_interface.c: (ospf_default_iftype) New function to centralize |
| 746 | this logic in one place. |
| 747 | * ospf_zebra.c: (ospf_interface_add) Use new function |
| 748 | ospf_default_iftype. |
| 749 | * ospf_vty.c: (no_ip_ospf_network,config_write_interface) Fix logic |
| 750 | by using new function ospf_default_iftype. |
| 751 | |
ajs | 3aa8d5f | 2004-12-11 18:00:06 +0000 | [diff] [blame] | 752 | 2004-12-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 753 | |
| 754 | * ospf_packet.c: (ospf_db_desc) Should be static, not global. |
| 755 | (ospf_hello,ospf_db_desc,ospf_ls_upd,ospf_ls_ack) Improve warning |
| 756 | messages to include identifying information (e.g. router id). |
| 757 | * ospf_nsm.c: (nsm_change_state) Improve info message to include |
| 758 | router id and state names. |
| 759 | |
gdt | 91f3e52 | 2004-12-09 14:51:03 +0000 | [diff] [blame] | 760 | 2004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com> |
| 761 | |
gdt | 3fb9de7 | 2004-12-09 16:30:04 +0000 | [diff] [blame] | 762 | * ospf_apiserver.c (ospf_apiserver_term): Obtain struct |
| 763 | ospf_apiserver * from listnode. Remove unused variables. Follows |
| 764 | suggestion from Jay Fenlason. |
gdt | 91f3e52 | 2004-12-09 14:51:03 +0000 | [diff] [blame] | 765 | |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 766 | 2004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 767 | |
| 768 | * *.c: Change level of debug messages to LOG_DEBUG. |
| 769 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 770 | 2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 771 | |
| 772 | * ospf_main.c: (main) The 2nd argument to openzlog has been removed. |
| 773 | |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 774 | 2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 775 | |
ajs | 1210fa6 | 2004-12-03 16:43:24 +0000 | [diff] [blame] | 776 | * ospf_packet.c: (ospf_db_desc) Reduce priority on a debug message |
| 777 | from LOG_NOTICE to LOG_DEBUG. |
| 778 | |
| 779 | 2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 780 | |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 781 | * ospf_main.c: (sigint) Use zlog_notice for termination message. |
| 782 | (main) Issue a startup announcement using zlog_notice. |
| 783 | |
ajs | bec595a | 2004-11-30 22:38:43 +0000 | [diff] [blame] | 784 | 2004-11-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 785 | |
| 786 | * ospf_packet.c: (ospf_db_desc_proc) Fix spelling of packet in warning |
| 787 | message and in comment. |
| 788 | (ospf_db_desc) Warning message that a packet is being discarded |
| 789 | should give the router id of the packet source. Fix spelling |
| 790 | of packet in two warning messages. |
| 791 | (ospf_ls_req) Warning message that a link state request is being |
| 792 | discarded should give the router id of the neighbor that sent it. |
| 793 | |
ajs | 5b85fac | 2004-11-26 19:36:42 +0000 | [diff] [blame] | 794 | 2004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu> |
| 795 | |
| 796 | * ospf_main.c: Remove #include "debug.h" (was not being used, and |
| 797 | lib/debug.h has now been deleted). |
| 798 | |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 799 | 2004-11-25 Hasso Tepper <hasso at quagga.net> |
| 800 | |
| 801 | * ospf_main.c: Make group to run as configurable. |
| 802 | |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 803 | 2004-11-15 Greg Troxel <gdt@fnord.ir.bbn.com> |
| 804 | |
| 805 | * ospf_packet.c (ospf_recv_packet): Assume CMSG_SPACE is present |
| 806 | and works (lib/zebra.h provides if OS doesn't). |
| 807 | |
paul | 788dab1 | 2004-11-15 11:48:37 +0000 | [diff] [blame] | 808 | 2004-11-15 Paul Jakma <paul@dishone.st> |
| 809 | |
| 810 | * ospf_{apiserver,te}.c: ospf_lsa_free's should be ospf_lsa_unlock. |
| 811 | |
paul | 05e85fa | 2004-11-12 10:52:19 +0000 | [diff] [blame] | 812 | 2004-11-12 Paul Jakma <paul@dishone.st> |
| 813 | |
| 814 | * ospf_ia.c: (process_summary_lsa) Only an ABR has any reason to |
| 815 | ignore stub area summary default. Even so it seems a strange |
| 816 | check, add a comment to that effect. |
| 817 | |
paul | f3ae74c | 2004-11-04 20:35:31 +0000 | [diff] [blame] | 818 | 2004-11-04 Paul Jakma <paul@dishone.st> |
| 819 | |
| 820 | * ospfd.c: (ospf_network_match_iface) revert to previous network |
| 821 | statement match behaviour. |
| 822 | |
paul | 62d8e96 | 2004-11-02 20:26:45 +0000 | [diff] [blame] | 823 | 2004-11-02 Paul Jakma <paul@dishone.st> |
| 824 | |
| 825 | * ospf_packet.c: (ospf_write_frags) remove iov arg, msg already points |
| 826 | to it. Add convenience pointer to msg->msg_iov[1], and use this, |
| 827 | fixing the unfortunate borkenness introduced in moving of this code |
| 828 | to a function. |
| 829 | (ospf_write) remove iovp and fix up call to previous. |
| 830 | (ospf_ls_upd_packet_new) cast size to long int - unfortunately |
| 831 | glibc's size_t format modifier is not portable. |
| 832 | |
paul | 37ccfa3 | 2004-10-31 11:24:51 +0000 | [diff] [blame] | 833 | 2004-10-31 Paul Jakma <paul@dishone.st> |
| 834 | |
| 835 | * ospf_packet.c: (ospf_write_frags) Add debug output |
| 836 | (ospf_write) set type early, so we can pass it to |
| 837 | ospf_write_frags. |
| 838 | (ospf_ls_upd_packet_new) print size in debug output when too large |
| 839 | packet is encountered. |
paul | 64511f3 | 2004-10-31 18:01:13 +0000 | [diff] [blame] | 840 | * ospf_zebra.c: (ospf_distribute_list_update_timer) Ugly misuse of |
| 841 | THREAD_ARG to store an integer, but it should at least use same |
| 842 | same type to retrieve the value. Assert value is sane. |
paul | 37ccfa3 | 2004-10-31 11:24:51 +0000 | [diff] [blame] | 843 | |
paul | ac19123 | 2004-10-22 12:05:17 +0000 | [diff] [blame] | 844 | 2004-10-22 Paul Jakma <paul@dishone.st> |
| 845 | |
| 846 | * ospf_network.c: (ospf_sock_init) call neutral setsock_ifindex() |
| 847 | function. |
| 848 | * ospf_packet.c: (ospf_read) manually look up ifindex |
paul | 4ccb2c4 | 2004-10-22 22:52:33 +0000 | [diff] [blame] | 849 | if system could not have returned one, eg openbsd, thanks to Rivo |
| 850 | Nurges for highlighting problem and fix. |
paul | 06f953f | 2004-10-22 17:00:38 +0000 | [diff] [blame] | 851 | Change setsockopt_pktinfo to setsockopt_ifindex. |
paul | ac19123 | 2004-10-22 12:05:17 +0000 | [diff] [blame] | 852 | |
hasso | 3fb9cd6 | 2004-10-19 19:44:43 +0000 | [diff] [blame] | 853 | 2004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com> |
| 854 | |
| 855 | * ospf_snmp.c: (ospf_snmp_if_update) Fix logic to handle PtP links |
| 856 | with dedicated subnets properly. |
| 857 | * ospf_lsa.c: (lsa_link_ptop_set) ditto. |
| 858 | * ospfd.c: (ospf_network_match_iface) ditto. |
| 859 | (ospf_network_run) ditto. |
| 860 | * ospf_interface.c: (ospf_if_is_configured) ditto. |
| 861 | (ospf_if_lookup_by_prefix) ditto. |
| 862 | (ospf_if_lookup_recv_if) ditto. |
| 863 | * ospf_vty.c: (show_ip_ospf_interface_sub) Display the peer or |
| 864 | broadcast address if present. |
| 865 | |
hasso | d68614d | 2004-10-13 09:32:48 +0000 | [diff] [blame] | 866 | 2004-10-13 Hasso Tepper <hasso at quagga.net> |
| 867 | |
| 868 | * ospf_main.c: Unbreak compilation with ospfapi disabled. |
hasso | c75105a | 2004-10-13 10:33:26 +0000 | [diff] [blame] | 869 | * ospf_snmp.c: Remove defaults used to initialize smux connection to |
| 870 | snmpd. Connection is initialized only if smux peer is configured. |
hasso | d68614d | 2004-10-13 09:32:48 +0000 | [diff] [blame] | 871 | |
hasso | f4d58ce | 2004-10-12 06:13:54 +0000 | [diff] [blame] | 872 | 2004-10-12 Hasso Tepper <hasso at quagga.net> |
| 873 | |
| 874 | * ospf_main.c, ospf_opaque.c: Unbreak ospfclient compilation - move |
| 875 | static variable from ospf_main.c into ospf_opaque.c. |
| 876 | |
hasso | c3abdb7 | 2004-10-11 16:27:03 +0000 | [diff] [blame] | 877 | 2004-10-11 Hasso Tepper <hasso at quagga.net> |
| 878 | |
| 879 | * ospf_main.c, ospf_opaque.c: Disable ospfapi init by default. New |
| 880 | command line switch to enable it. |
| 881 | |
paul | 6b33361 | 2004-10-11 10:11:25 +0000 | [diff] [blame] | 882 | 2004-10-11 Paul Jakma <paul@dishone.st> |
| 883 | |
| 884 | * ospf_dump.c: (ospf_ip_header_dump) Assume header is in host order |
| 885 | remove ntohs that should have dissappeared. Take struct ip |
| 886 | as argument, caller has to know there's an IP header at start of |
| 887 | stream anyway. |
| 888 | * ospf_dump.h: update declaration of ospf_ip_header_dump. |
| 889 | * ospf_packet.c: (ospf_write) correct call to |
| 890 | sockopt_iphdrincl_swab_htosys which was munging the header. |
| 891 | (ospf_recv_packet) ip_len is needed for old OpenBSD fixup. |
| 892 | (ospf_read) sockopt_iphdrincl_swab_systoh ip header as soon as |
| 893 | we have it. |
paul | 6c83567 | 2004-10-11 11:00:30 +0000 | [diff] [blame] | 894 | * (global) Const char update and signed/unsigned fixes. |
| 895 | * (various headers) size defines should be unsigned. |
| 896 | * ospf_interface.h: remove duplicated defines, include the |
| 897 | authoritative header - though, these defines should probably |
| 898 | be moved to a dedicated header, or ospfd.h. |
| 899 | * ospf_lsa.h: (struct lsa) ls_seqnum should be unsigned. |
| 900 | * ospf_packet.c: (ospf_write) cast result of shift to unsigned. |
paul | 6b33361 | 2004-10-11 10:11:25 +0000 | [diff] [blame] | 901 | |
hasso | eb1ce60 | 2004-10-08 08:17:22 +0000 | [diff] [blame] | 902 | 2004-10-08 Hasso Tepper <hasso at quagga.net> |
| 903 | |
| 904 | * *.[c|h]: Fix compiler warnings: make some strings const, signed -> |
| 905 | unsigned, remove unused variables etc. |
| 906 | |
gdt | 54ade99 | 2004-10-07 19:38:20 +0000 | [diff] [blame] | 907 | 2004-10-07 Greg Troxel <gdt@claude.ir.bbn.com> |
| 908 | |
| 909 | * ospf_apiserver.c (ospf_apiserver_unregister_opaque_type): Don't |
| 910 | use of variable names 'node' and 'nextnode' to avoid possible |
| 911 | conflict with list macros. Move variable declaration inside for |
| 912 | loop after a statement to top of function. |
| 913 | |
paul | aa20c6f | 2004-10-07 14:19:36 +0000 | [diff] [blame] | 914 | 2004-10-07 Paul Jakma <paul@dishone.st> |
| 915 | |
| 916 | * ospf_snmp.c: Missed list typedef update |
| 917 | * ospf_dump.c: Include sockopt.h for header swab functions. |
| 918 | |
paul | 18b12c3 | 2004-10-05 14:38:29 +0000 | [diff] [blame] | 919 | 2004-10-05 Paul Jakma <paul@dishone.st> |
| 920 | |
| 921 | * ospf_packet.c: replace ospf_swap_iph_to... with |
| 922 | sockopt_iphdrincl_swab_... |
| 923 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 924 | 2004-10-03 James R. Leu <jleu at mindspring.com> |
| 925 | |
| 926 | * ospf_zebra.c: Read router id related messages from zebra daemon. |
| 927 | Schedule router-id update thread if it's changed. |
| 928 | * ospfd.c: Remove own router-id selection function. Use router id from |
| 929 | zebra daemon if it isn't manually overriden in configuration. |
| 930 | |
paul | 68defd6 | 2004-09-27 07:27:13 +0000 | [diff] [blame] | 931 | 2004-09-27 Paul Jakma <paul@dishone.st> |
| 932 | |
paul | 6a99f83 | 2004-09-27 12:56:30 +0000 | [diff] [blame] | 933 | * ospf_dump.c: (ospf_ip_header_dump) Use HAVE_IP_HDRINCL_BSD_ORDER |
| 934 | Apply to offset too. Print ip_cksum, lets not worry about |
| 935 | possible 2.0.37 compile problems. |
| 936 | * ospf_packet.c: (ospf_swap_iph_to{n,h}) Use |
| 937 | HAVE_IP_HDRINCL_BSD_ORDER. |
| 938 | (ospf_recv_packet) ditto. |
| 939 | (ospf_write) Fixup iov argument to ospf_write_frags. |
| 940 | (struct msghdr).msg_name is caddr_t on most platforms. |
paul | 68defd6 | 2004-09-27 07:27:13 +0000 | [diff] [blame] | 941 | (ospf_recv_packet) ditto. And msg_flags is not always there |
| 942 | memset struct then set fields we care about rather than |
| 943 | initialise all fields individually. |
| 944 | |
hasso | c9e52be | 2004-09-26 16:09:34 +0000 | [diff] [blame] | 945 | 2004-09-26 Hasso Tepper <hasso at quagga.net> |
| 946 | |
| 947 | * ospf_abr.c, ospf_dump.c, ospf_lsa.c, ospf_packet.c, ospf_vty.c, |
| 948 | ospf_zebra.c: Fix compiler warnings. |
| 949 | |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 950 | 2004-09-24 Paul Jakma <paul@dishone.st> |
| 951 | |
| 952 | * ospf_apiserver.{c,h}: lists typedef removal cleanup. |
| 953 | update some list loops to LIST_LOOP. some miscellaneous indent |
| 954 | fixups. |
| 955 | (ospf_apiserver_unregister_opaque_type) fix listnode_delete of |
| 956 | referenced node in loop. |
paul | 1603c06 | 2004-09-24 08:23:24 +0000 | [diff] [blame] | 957 | (ospf_apiserver_term) loops calling ospf_apiserver_free, which |
| 958 | deletes referenced nodes from apiserver_list, fixed. |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 959 | * ospf_interface.h: lists typedef removal cleanup. |
| 960 | * ospf_opaque.{c,h}: lists typedef removal cleanup. update some list |
| 961 | loops to LIST_LOOP. miscellaneous style and indent fixups. |
| 962 | * ospf_te.{c,h}: ditto |
| 963 | * ospf_packet.c: lists typedef removal cleanup. |
paul | a257068 | 2004-09-24 08:09:57 +0000 | [diff] [blame] | 964 | (ospf_write) ifdef fragmentation support. move actual |
| 965 | fragmentation out to a new, similarly ifdefed, function. |
| 966 | (ospf_write_frags) fragmented write support, moved from previous. |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 967 | |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 968 | 2004-09-23 Hasso Tepper <hasso at quagga.net> |
| 969 | |
| 970 | * *.[c|h]: list -> struct list *, listnode -> struct listnode *. |
| 971 | |
paul | 68b7339 | 2004-09-12 14:21:37 +0000 | [diff] [blame] | 972 | 2004-09-12 Paul Jakma <paul@dishone.st> |
| 973 | |
| 974 | * ospf_packet.c: Fix bugzilla #107 |
| 975 | (ospf_packet_max) get rid of the magic 88 constant |
| 976 | (ospf_swab_iph_ton) new function. set ip header to network order, |
| 977 | taking BSDisms into account. |
| 978 | (ospf_swab_iph_toh) the inverse. |
| 979 | (ospf_write) Add support for IP fragmentation, will only work on |
| 980 | linux though, other kernels make it impossible. get rid of the |
| 981 | magic 4 constant. |
| 982 | (ospf_make_ls_upd) Bound check to end of stream, not to |
| 983 | interface mtu. |
| 984 | (ospf_ls_upd_packet_new) New function, allocate upd packet |
| 985 | taking oversized LSAs into account. |
| 986 | (ospf_ls_upd_queue_send) use ospf_ls_upd_packet_new to allocate, |
| 987 | rather than statically allocating mtu sized packet buffer, which |
| 988 | actually was wrong - it didnt take ip header into account, which |
| 989 | should not be included in packet buffer. |
| 990 | (ospf_ls_upd_send_queue_event) minor tweaks and remove |
| 991 | TODO comment. |
| 992 | |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 993 | 2004-08-31 David Wiggins <dwiggins@bbn.com> |
| 994 | |
| 995 | * ospf_spf.c (ospf_spf_calculate): Many more comments and debug |
| 996 | print statements. New function ospf_vertex_dump used in debugging. |
| 997 | |
| 998 | 2004-08-31 David Wiggins <dwiggins@bbn.com> |
| 999 | |
| 1000 | * ospf_spf.h (struct vertex): Comments for flags and structure members. |
| 1001 | |
| 1002 | 2004-08-31 David Wiggins <dwiggins@bbn.com> |
| 1003 | |
| 1004 | * ospf_route.c: When finding an alternate route, log cost as well. |
| 1005 | |
| 1006 | 2004-08-31 David Wiggins <dwiggins@bbn.com> |
| 1007 | |
| 1008 | * ospf_interface.c (ospf_lookup_if_params): Initialize af in |
| 1009 | struct prefix allocated on stack. |
| 1010 | |
| 1011 | 2004-08-31 David Wiggins <dwiggins@bbn.com> |
| 1012 | |
| 1013 | * ospf_packet.c (ospf_ls_ack_send_delayed): In p2mp mode, send |
| 1014 | acks to AllSPFRouters, rather than All-DR. |
| 1015 | |
hasso | 7b90143 | 2004-08-31 13:37:42 +0000 | [diff] [blame] | 1016 | 2004-08-27 Hasso Tepper <hasso at quagga.net> |
| 1017 | |
| 1018 | * ospf_vty.c: Don't print ospf network type under interface only |
| 1019 | if interface is in broadcast mode and interface type really is |
| 1020 | broadcast. Fixes Bugzilla #108. |
| 1021 | |
gdt | d7d9399 | 2004-08-27 12:03:42 +0000 | [diff] [blame] | 1022 | 2004-08-27 David Wiggins <dwiggins@bbn.com> |
| 1023 | |
| 1024 | * ospf_spf.c (ospf_nexthop_calculation): Initialize address family |
| 1025 | in on-stack struct prefix_ipv4. Fixes point-to-multipoint SPF |
| 1026 | calculation. |
| 1027 | |
gdt | d0deca6 | 2004-08-26 13:14:07 +0000 | [diff] [blame] | 1028 | 2004-08-26 Greg Troxel <gdt@fnord.ir.bbn.com> |
| 1029 | |
| 1030 | * ospf_packet.c (ospf_recv_packet): adjust size declaration of |
gdt | d7d9399 | 2004-08-27 12:03:42 +0000 | [diff] [blame] | 1031 | buffer used to get interface index so that it compiles on other |
| 1032 | than Linux and includes the required alignment space. Probably |
| 1033 | this was only working on sparc/sparc64 because most of |
| 1034 | sockaddr_dl was not being written. |
gdt | d0deca6 | 2004-08-26 13:14:07 +0000 | [diff] [blame] | 1035 | |
paul | 863082d | 2004-08-19 04:43:43 +0000 | [diff] [blame] | 1036 | 2004-08-19 Paul Jakma <paul@dishone.st> |
| 1037 | |
| 1038 | * ospf_packet.c: update to match sockopt renames. |
| 1039 | |
paul | 75ee0b8 | 2004-08-05 09:10:31 +0000 | [diff] [blame] | 1040 | 2004-08-04 Paul Jakma <paul@dishone.st> |
| 1041 | |
| 1042 | * ospf_spf.c: (ospf_spf_consider_nexthop) Add comment about issue. |
| 1043 | Compare only against list head - all nexthops must be same cost |
| 1044 | anyway, fixes a reference-listnode-after-delete bug noted by |
| 1045 | Kir Kostuchenko. |
| 1046 | (ospf_nexthop_calculation) Use ospf_spf_consider_nexthop for all |
| 1047 | candidates attached to root. |
| 1048 | |
paul | 36c64ef | 2004-07-27 11:19:11 +0000 | [diff] [blame] | 1049 | 2004-07-27 Paul Jakma <paul@dishone.st> |
| 1050 | |
paul | 48fe13b | 2004-07-27 17:40:44 +0000 | [diff] [blame] | 1051 | * ospf_packet.c: (ospf_ls_upd_send_queue_event) fix thinko from |
| 1052 | last fix for ospfd wedging due to oversize LSAs: dont list loop on |
| 1053 | ospf_ls_upd_queue_send() - guaranteed segfault. |
| 1054 | |
| 1055 | 2004-07-27 Paul Jakma <paul@dishone.st> |
| 1056 | |
paul | 36c64ef | 2004-07-27 11:19:11 +0000 | [diff] [blame] | 1057 | * ospf_opaque.c: (ospf_opaque_lsa_flush_schedule) do not NULL out |
| 1058 | the LSA as then free_opaque_info_per_id() can never unlock (and |
| 1059 | free) the LSA. Reported by Gunnar Stigen. |
| 1060 | |
paul | 2dd8bb4 | 2004-07-23 15:13:48 +0000 | [diff] [blame] | 1061 | 2004-07-23 Paul Jakma <paul@dishone.st> |
| 1062 | |
| 1063 | * ospf_network.c: Replace PKTINFO/RECVIF with call to |
| 1064 | setsockopt_pktinfo |
| 1065 | * ospf_packet.c: Use getsockopt_pktinfo_ifindex and |
| 1066 | SOPT_SIZE_CMSG_PKTINFO_IPV4. |
| 1067 | |
paul | 59ea14c | 2004-07-14 20:50:36 +0000 | [diff] [blame] | 1068 | 2004-07-14 Paul Jakma <paul@dishone.st> |
| 1069 | |
| 1070 | * ospf_packet.c: (ospf_ls_upd_send_queue_event) Partial fix for |
| 1071 | problem reported by Peter Frost amongst others, where function |
| 1072 | will spin indefinitely if update list contains LSAs greater than |
| 1073 | MTU-headers or other condition leading to update list never being |
| 1074 | cleared. Problem of what to do with these LSAs remains. |
| 1075 | (ospf_make_ls_upd) add comment about large LSA problem, |
| 1076 | indentation cleanup. |
| 1077 | |
gdt | b2c1b28 | 2004-07-01 12:35:36 +0000 | [diff] [blame] | 1078 | 2004-07-01 Greg Troxel <gdt@fnord.ir.bbn.com> |
| 1079 | |
| 1080 | * Makefile.am (lib_LTLIBRARIES): make libospf shared |
| 1081 | |
gdt | 87efd64 | 2004-06-30 17:36:11 +0000 | [diff] [blame] | 1082 | 2004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com> |
| 1083 | |
| 1084 | * Makefile.am: Add shlib support. |
| 1085 | |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 1086 | 2004-06-10 Hasso Tepper <hasso@estpak.ee> |
| 1087 | |
| 1088 | * *: Removed ifdefs HAVE_NSSA. |
| 1089 | |
paul | 553ff11 | 2004-06-06 09:41:00 +0000 | [diff] [blame] | 1090 | 2004-06-06 Paul Jakma <paul@dishone.st> |
| 1091 | |
| 1092 | * ospf_dump.c,ospf_lsa.c: Fix typos of merge of previous. |
| 1093 | ospf_flood.c: (ospf_process_self_originated_lsa) fix zlog format |
| 1094 | |
paul | 0c2be26 | 2004-05-31 14:16:54 +0000 | [diff] [blame] | 1095 | 2004-05-31 Sagun Shakya <sagun.shakya@sun.com> |
| 1096 | |
| 1097 | * ospf_dump.c: (ospf_lsa_header_dump) LOOKUP can return null if |
| 1098 | index is out of range. |
| 1099 | ospf_flood.c: endianness fix |
| 1100 | ospf_lsa.c: Missing ntohl's on (struct lsa *)->data->ls_seqnum |
| 1101 | in various places. |
| 1102 | |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1103 | 2004-05-10 Hasso Tepper <hasso@estpak.ee> |
| 1104 | |
| 1105 | * ospf_zebra.c, ospfd.c: Move ospf_prefix_list_update() function |
| 1106 | to ospf_zebra.c from ospfd.c and add redistribution updates if |
| 1107 | route-map is used in redistribution. |
| 1108 | * ospf_main.c: Remove now useless call to ospf_init(). |
| 1109 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 1110 | 2004-05-08 Paul Jakma <paul@dishone.st> |
| 1111 | |
| 1112 | * ospf_zebra.c: Sync with lib/zclient changes |
| 1113 | |
paul | d3f0d62 | 2004-05-05 15:27:15 +0000 | [diff] [blame] | 1114 | 2004-05-05 Paul Jakma <paul@dishone.st> |
| 1115 | |
paul | 5bd4189 | 2004-05-05 17:29:24 +0000 | [diff] [blame] | 1116 | * ospf_network.c: (ospf_sock_init) Check whether IP_HDRINCL is |
| 1117 | defined. Warn at compile and runtime. Use |
| 1118 | IPTOS_PREC_INTERNETCONTROL otherwise. |
paul | d3f0d62 | 2004-05-05 15:27:15 +0000 | [diff] [blame] | 1119 | * ospf_packet.c: (ospf_associate_packet_vl) cleanup, move |
| 1120 | some of the checks up to ospf_read, return either a |
| 1121 | virtual link oi, or NULL. |
| 1122 | (ospf_read) Cleanup, make it responsible for checks. Remove |
| 1123 | the nbr lookup - moved to ospf_neighbor. Adjust all nbr |
| 1124 | lookups to use new wrappers exported by ospf_neighbor. |
| 1125 | * ospf_neighbor.h: Add ospf_neigbour_get and ospf_nbr_lookup. |
| 1126 | * ospf_neighbor.c: (ospf_neigbour_get) Index ospf_interface |
| 1127 | neighbour table by router-id for virtual-link ospf_interfaces, |
| 1128 | not by peer_addr (which breaks for asymmetric vlinks) |
| 1129 | (ospf_nbr_lookup) add a wrapper for nbr lookups to deal with |
| 1130 | above. |
paul | cd59da6 | 2004-05-05 17:26:55 +0000 | [diff] [blame] | 1131 | * ospf_interface.c: (ospf_vl_set_params) Catch changes of interface |
| 1132 | address for either end of a virtual-link, and hence potential cost |
| 1133 | changes. |
| 1134 | |
hasso | a0a3976 | 2004-04-23 08:51:10 +0000 | [diff] [blame] | 1135 | 2004-04-22 Hasso Tepper <hasso@estpak.ee> |
| 1136 | |
| 1137 | * ospf_zebra.c: Don't ignore reject/bh routes, it's the only way |
| 1138 | to "summarize" routes in ASBR at the moment. |
| 1139 | |
hasso | 8585d4e | 2004-04-20 17:25:12 +0000 | [diff] [blame] | 1140 | 2004-04-20 Hasso Tepper <hasso@estpak.ee> |
| 1141 | |
| 1142 | * ospfd.c: Unset NP flag if area is going to be normal or stub. |
| 1143 | Fixes UNH OSPF_NSSA.1.2a comment. |
| 1144 | * ospf_abr.c: Originate default into stub/nssa area even if |
| 1145 | summaries are disabled. |
| 1146 | * ospf_zebra.c: Don't attempt to redistribute 127.0.0.0/8. |
| 1147 | |
hasso | c266ac7 | 2004-04-19 17:31:00 +0000 | [diff] [blame] | 1148 | 2004-04-19 Hasso Tepper <hasso@estpak.ee> |
| 1149 | |
| 1150 | * ospf_vty.c: Don't warn that export- and import-list can't be |
| 1151 | configured to backbone area if they are applied and are working |
| 1152 | fine. |
| 1153 | |
hasso | 128d31d | 2004-04-04 12:52:33 +0000 | [diff] [blame] | 1154 | 2004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com> |
| 1155 | |
| 1156 | * ospf_packet.c: Don't drop packets in Solaris x86. |
| 1157 | [quagga-dev 1005]. |
| 1158 | |
hasso | 0d85b99 | 2004-03-18 19:18:33 +0000 | [diff] [blame] | 1159 | 2004-03-18 Amir Guindehi <amir@datacore.ch> |
| 1160 | |
| 1161 | * ospf_opaque.c: Attempt to correct the incorrect behavior of |
| 1162 | Quagga's ospfd in the special situation that a node's opaque |
| 1163 | capability has changed as "ON -> OFF -> ON". [quagga-dev 843]. |
| 1164 | |
paul | 7f352b8 | 2004-02-19 19:37:47 +0000 | [diff] [blame] | 1165 | 2004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com> |
| 1166 | |
| 1167 | * ospf_abr.c: (ospf_abr_update_aggregate) UNH 3.12b,c, address range |
| 1168 | should be configured with the highest cost path within the range, |
| 1169 | not lowest. |
| 1170 | |
paul | 940b01a | 2004-02-17 20:07:30 +0000 | [diff] [blame] | 1171 | 2004-02-17 Paul Jakma <paul@dishone.st> |
| 1172 | |
| 1173 | * ospf_zebra.c: (ospf_interface_delete) Do not delete the interface |
| 1174 | params, nor the interface structure, if an interface delete |
| 1175 | message is received from zebra. |
| 1176 | * ospf_interface.c: (ospf_if_delete_hook) Delete the interface |
| 1177 | params and interface, ie that which was previously removed in |
| 1178 | (ospf_interface_delete) above. |
| 1179 | |
hasso | 2db3d05 | 2004-02-11 21:52:13 +0000 | [diff] [blame] | 1180 | 2004-02-11 Hasso Tepper <hasso@estpak.ee> |
| 1181 | * ospf_interface.c, ospf_zebra.c: Don't attempt to read path->oi->ifp |
| 1182 | if oi doesn't exist any more. |
| 1183 | |
hasso | cb05eb2 | 2004-02-11 21:10:19 +0000 | [diff] [blame] | 1184 | 2004-02-11 Vadim Suraev <vadim.suraev@terayon.com> |
| 1185 | * ospf_packet.c (ospf_ls_upd): Router should flush received network |
| 1186 | LSA if it was originated with older router-id ([zebra 14710] #6). |
| 1187 | |
| 1188 | 2003-12-08 Mattias Amnefelt <mattiasa@kth.se> |
paul | 239aecc | 2003-12-08 10:34:54 +0000 | [diff] [blame] | 1189 | |
| 1190 | * ospf_packet.c: (ospf_recv_packet) OpenBSD now leaves iph.ip_len |
| 1191 | network byte order. |
| 1192 | |
gdt | 8f40e89 | 2003-12-05 14:01:43 +0000 | [diff] [blame] | 1193 | 2003-12-05 Greg Troxel <gdt@poblano.ir.bbn.com> |
| 1194 | |
| 1195 | * ospfd.c (ospf_network_match_iface): Rewrite code for clarity |
| 1196 | while trying not to change semantics. Add ifdefed-out code to |
| 1197 | avoid matching ppp interfaces whose destination address does not |
| 1198 | also match the prefix under consideration, to help out people with |
| 1199 | problems due to as-yet-unfixed bugs with p2p interfaces coming and |
| 1200 | going. |
| 1201 | |
paul | 736d344 | 2003-07-24 23:22:57 +0000 | [diff] [blame] | 1202 | 2003-07-25 kamatchi soundaram <kamatchi@tdd.sj.nec.com> |
| 1203 | |
| 1204 | * ospf_packet.c (ospf_ls_upd_send_queue_event): get next route |
| 1205 | node in body of the loop to avoid chance that route node |
| 1206 | is unlocked and deleted before the next iteration tries to |
| 1207 | get next route node. |
| 1208 | |
paul | 0a825c7 | 2003-05-24 13:48:16 +0000 | [diff] [blame] | 1209 | 2003-05-24 Kenji Yabuuchi |
| 1210 | |
| 1211 | * ospf_interface.c(ospf_if_lookup_recv_if): Use the most specific |
| 1212 | match for interface lookup. |
| 1213 | |
paul | 551a897 | 2003-05-18 15:22:55 +0000 | [diff] [blame] | 1214 | 2003-05-18 Hasso Tepper <hasso@estpak.ee> |
paul | 445f143 | 2003-05-16 19:00:31 +0000 | [diff] [blame] | 1215 | |
paul | 551a897 | 2003-05-18 15:22:55 +0000 | [diff] [blame] | 1216 | * ospf_vty.c: Show NSSA LSA route info in "show ip ospf database" |
| 1217 | output |
paul | 445f143 | 2003-05-16 19:00:31 +0000 | [diff] [blame] | 1218 | |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 1219 | 2003-05-16 Hasso Tepper <hasso@estpak.ee> |
| 1220 | |
| 1221 | * ospf_lsa.c: Fix handling of NSSA |
| 1222 | |
paul | 551a897 | 2003-05-18 15:22:55 +0000 | [diff] [blame] | 1223 | 2003-04-23 Hasso Tepper <hasso@estpak.ee> |
| 1224 | |
| 1225 | * ospf_vty.c: fix "router xxx" node commands in vtysh |
| 1226 | |
paul | 445f143 | 2003-05-16 19:00:31 +0000 | [diff] [blame] | 1227 | 2003-04-19 Hasso Tepper <hasso@estpak.ee> |
| 1228 | |
| 1229 | * {ospf_abr,ospfd}.c: area id's DECIMAL -> ADDRESS |
| 1230 | * ospf_routemap.c: sync daemon's route-map commands to have same |
| 1231 | syntax. |
| 1232 | |
| 1233 | 2003-04-19 Sergey Vyshnevetskiy <serg@vostok.net> |
| 1234 | |
| 1235 | * ospf_packet.c: Add missing param to zlog |
| 1236 | * ospf_flood.c: remove unused vars |
| 1237 | |
| 1238 | 2003-04-17 Denis Ovsienko <zebra@pilot.org.ua> |
| 1239 | |
| 1240 | * ospf_interface.c: fix incorrect memset |
| 1241 | |
paul | 28a1384 | 2003-05-16 20:30:37 +0000 | [diff] [blame] | 1242 | 2003-04-10 Amir Guindehi <amir@datacore.ch> |
paul | 445f143 | 2003-05-16 19:00:31 +0000 | [diff] [blame] | 1243 | |
| 1244 | * ospf_lsa.[ch]: opaque LSA fix, use ospf_lookup. |
| 1245 | |
| 1246 | 2003-04-03 David Watson <dwatson@eecs.umich.edu> |
| 1247 | |
| 1248 | * ospf_lsa.c: byte order fix |
| 1249 | |
paul | 07661cb | 2003-03-18 00:03:05 +0000 | [diff] [blame] | 1250 | 2002-03-17 Amir Guindehi <amir@datacore.ch> |
| 1251 | |
| 1252 | * ospf_apiserver.[ch]: Merge Ralph Keller's OSPFAPI support. |
| 1253 | * ospf_api.[ch]: Merge Ralph Keller's OSPFAPI support. |
| 1254 | * ospfclient: OSPFAPI demonstration client. |
| 1255 | |
| 1256 | 2003-01-23 Masahiko Endo <endo@suri.co.jp> |
| 1257 | |
| 1258 | * ospf_ism.c: NSM event schedule bug fix. |
| 1259 | |
| 1260 | 2002-10-30 Greg Troxel <gdt@ir.bbn.com> |
| 1261 | |
| 1262 | * ospf_packet.c (ospf_make_md5_digest): MD5 length fix. |
| 1263 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1264 | 2002-10-23 endo@suri.co.jp (Masahiko Endo) |
| 1265 | |
| 1266 | * ospf_opaque.c: Update Opaque LSA patch. |
| 1267 | |
| 1268 | 2002-10-23 Ralph Keller <keller@tik.ee.ethz.ch> |
| 1269 | |
| 1270 | * ospf_vty.c (show_ip_ospf_database): Fix CLI parse. |
| 1271 | |
| 1272 | 2002-10-23 Juris Kalnins <juris@mt.lv> |
| 1273 | |
| 1274 | * ospf_interface.c (ospf_if_stream_unset): When write queue |
| 1275 | becomes empty stop write timer. |
| 1276 | |
| 1277 | 2002-10-10 Greg Troxel <gdt@ir.bbn.com> |
| 1278 | |
| 1279 | * ospf_packet.c (ospf_check_md5_digest): Change >= to > to make it |
| 1280 | conform to RFC. |
| 1281 | |
| 1282 | 2002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1283 | |
| 1284 | * zebra-0.93 released. |
| 1285 | |
| 1286 | 2002-06-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1287 | |
| 1288 | * ospf_spf.c (ospf_nexthop_calculation): Add NULL set to oi and |
| 1289 | check of l2. Reported by: Daniel Drown <dan-zebra@drown.org> |
| 1290 | (ospf_lsa_has_link): LSA Length calculation fix. Reported by: |
| 1291 | Paul Jakma <paulj@alphyra.ie>. |
| 1292 | |
| 1293 | * ospfd.c (ospf_if_update): Fix nextnode reference bug. Reported |
| 1294 | by: juris@mt.lv. |
| 1295 | |
| 1296 | 2002-01-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1297 | |
| 1298 | * ospfd.c: Merge [zebra 11445] Masahiko ENDO's Opaque-LSA support. |
| 1299 | |
| 1300 | 2001-08-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1301 | |
| 1302 | * ospf_interface.c (ospf_add_to_if): Use /32 address to register |
| 1303 | OSPF interface information. |
| 1304 | (ospf_delete_from_if): Likewise. |
| 1305 | |
| 1306 | * ospf_zebra.c (ospf_interface_address_delete): Likewise. |
| 1307 | |
| 1308 | 2001-08-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1309 | |
| 1310 | * ospf_zebra.c (ospf_redistribute_unset): When redistribute type |
| 1311 | is OSPF, do not unset redistribute flag. |
| 1312 | |
| 1313 | 2001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1314 | |
| 1315 | * zebra-0.92a released. |
| 1316 | |
| 1317 | 2001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1318 | |
| 1319 | * zebra-0.92 released. |
| 1320 | |
| 1321 | 2001-08-12 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1322 | |
| 1323 | * ospfd.c (ospf_config_write): auto-cost reference-bandwidth |
| 1324 | configuration display. |
| 1325 | |
| 1326 | 2001-07-24 David Watson <dwatson@eecs.umich.edu> |
| 1327 | |
| 1328 | * ospf_spf.c (ospf_spf_next): Modify ospf_vertex_add_parent to |
| 1329 | check for an existing link before connecting the parent and child. |
| 1330 | ospf_nexthop_calculation is also modified to check for duplicate |
| 1331 | entries when copying from the parent. Finally, ospf_spf_next |
| 1332 | removes duplicates when it merges two equal cost candidates. |
| 1333 | |
| 1334 | 2001-07-23 itojun@iijlab.net |
| 1335 | |
| 1336 | * ospfd.c (show_ip_ospf_neighbor): Check ospf_top before use it |
| 1337 | [zebra 8549]. |
| 1338 | |
| 1339 | 2001-07-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1340 | |
| 1341 | * ospf_packet.c (ospf_write): Remove defined(__OpenBSD__) to make |
| 1342 | it work on OpenBSD. |
| 1343 | |
| 1344 | 2001-06-26 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1345 | |
| 1346 | * ospf_zebra.c (config_write_ospf_default_metric): Display |
| 1347 | default-metric configuration. |
| 1348 | |
| 1349 | 2001-06-18 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1350 | |
| 1351 | * ospf_ia.h (OSPF_EXAMINE_SUMMARIES_ALL): Remove old macros. |
| 1352 | |
| 1353 | 2001-05-28 Kunihiro Ishiguro <kunihiro@ipinfusion.com> |
| 1354 | |
| 1355 | * ospf_snmp.c (ospfIfEntry): Fix interface lookup bug to avoid |
| 1356 | crush. |
| 1357 | (ospfIfMetricEntry): Likewise. |
| 1358 | |
| 1359 | 2001-03-18 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1360 | |
| 1361 | * ospf_packet.c (ospf_read): Fix typo. Reported by: "Jen B |
| 1362 | Lin'Kova" <jen@stack.net>. |
| 1363 | |
| 1364 | 2001-03-15 Gleb Natapov <gleb@nbase.co.il> |
| 1365 | |
| 1366 | * ospf_interface.c (ip_ospf_network): Set interface parameter. |
| 1367 | (interface_config_write): Add check for OSPF_IFTYPE_LOOPBACK. |
| 1368 | |
| 1369 | * ospf_zebra.c (ospf_interface_add): Set interface parameter. |
| 1370 | |
| 1371 | 2001-02-21 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1372 | |
| 1373 | * ospf_packet.c (ospf_recv_packet): Solaris also need to add |
| 1374 | (iph.ip_hl << 2) to iph.ip_len. |
| 1375 | |
| 1376 | 2001-02-09 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1377 | |
| 1378 | * ospfd.h (OSPF_LS_REFRESH_TIME): Fix OSPF_LS_REFRESH_TIME value. |
| 1379 | Suggested by: David Watson <dwatson@eecs.umich.edu>. |
| 1380 | |
| 1381 | * ospf_zebra.c (zebra_init): Remove zebra node. |
| 1382 | |
| 1383 | * ospfd.c (ospf_area_range_set): Function name is changed from |
| 1384 | ospf_ara_range_cmd. |
| 1385 | (ospf_area_range_unset): New function which separated from DEFUN. |
| 1386 | New commands are added: |
| 1387 | "no area A.B.C.D range A.B.C.D/M advertise" |
| 1388 | "no area <0-4294967295> range A.B.C.D/M advertise" |
| 1389 | "no area A.B.C.D range A.B.C.D/M not-advertise" |
| 1390 | "no area <0-4294967295> range A.B.C.D/M not-advertise" |
| 1391 | |
| 1392 | * ospf_lsa.c (ospf_lsa_more_recent): Fix previous change. |
| 1393 | |
| 1394 | 2001-02-08 Matthew Grant <grantma@anathoth.gen.nz> |
| 1395 | |
| 1396 | * ospf_network.c (ospf_if_add_allspfrouters): Use |
| 1397 | setsockopt_multicast_ipv4. |
| 1398 | (ospf_if_drop_allspfrouters): Likewise. |
| 1399 | |
| 1400 | * ospf_lsa.c (ospf_router_lsa_install): Add rt_recalc flag. |
| 1401 | (ospf_network_lsa_install): Likewise. |
| 1402 | (ospf_summary_lsa_install): Likewise. |
| 1403 | (ospf_summary_asbr_lsa_install): Likewise. |
| 1404 | (ospf_external_lsa_install): Likewise. |
| 1405 | (ospf_lsa_install): Call ospf_lsa_different to check this LSA is |
| 1406 | new one or not. |
| 1407 | |
| 1408 | 2001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1409 | |
| 1410 | * ospf_zebra.c (ospf_interface_delete): Do not free interface |
| 1411 | structure when ospfd receive interface delete message to support |
| 1412 | pseudo interface. |
| 1413 | |
| 1414 | 2001-02-01 Dick Glasspool <dick@ipinfusion.com> |
| 1415 | |
| 1416 | * ospfd.c (area_range_notadvertise): Change area range "suppress" |
| 1417 | command to "not-advertise". |
| 1418 | |
| 1419 | * ospfd.h (OSPF_LS_REFRESH_TIME): Change OSPF_LS_REFRESH_TIME from |
| 1420 | 1800 to 60. |
| 1421 | |
| 1422 | * ospf_abr.c (ospf_abr_update_aggregate): When update_aggregate is |
| 1423 | updating the area-range, the lowest cost is now saved. |
| 1424 | |
| 1425 | * ospf_lsa.c (ospf_lsa_more_recent): Routing to compare sequence |
| 1426 | numbers rather than creating overflow during calculation. |
| 1427 | |
| 1428 | 2001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1429 | |
| 1430 | * zebra-0.91 is released. |
| 1431 | |
| 1432 | 2001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1433 | |
| 1434 | * ospf_packet.c (ospf_db_desc_proc): Do not continue process when |
| 1435 | NSM_SeqNumberMismatch is scheduled. |
| 1436 | (ospf_ls_req): Free ls_upd when return from this function. |
| 1437 | (ospf_ls_upd_timer): When update list is empty do not call |
| 1438 | ospf_ls_upd_send(). Suggested by: endo@suri.co.jp (Masahiko |
| 1439 | Endo). |
| 1440 | |
| 1441 | 2001-01-26 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1442 | |
| 1443 | * ospf_lsa.c (ospf_maxage_flood): Flood LSA when it reaches |
| 1444 | MaxAge. RFC2328 Section 14. |
| 1445 | (ospf_maxage_lsa_remover): Call above function during removing |
| 1446 | MaxAge LSA. |
| 1447 | |
| 1448 | 2001-01-26 Dick Glasspool <dick@ipinfusion.com> |
| 1449 | |
| 1450 | * ospf_flood.c (ospf_flood_through_as): Function is updated for |
| 1451 | NSSA Translations now done at ospf_abr.c with no change in P-bit. |
| 1452 | |
| 1453 | * ospf_lsa.c (ospf_get_nssa_ip): Get 1st IP connection for Forward |
| 1454 | Addr. |
| 1455 | (ospf_install_flood_nssa): Leave Type-7 LSA at Lock Count = 2. |
| 1456 | |
| 1457 | * ospf_ase.c (ospf_ase_calculate_route): Add debug codes. |
| 1458 | |
| 1459 | * ospf_abr.c (ospf_abr_translate_nssa): Recalculate LSA checksum. |
| 1460 | |
| 1461 | * ospf_packet.h (OSPF_SEND_PACKET_LOOP): Added for test packet. |
| 1462 | |
| 1463 | * ospf_dump.c (ospf_lsa_type_msg): Add OSPF_GROUP_MEMBER_LSA and |
| 1464 | OSPF_AS_NSSA_LSA. |
| 1465 | |
| 1466 | * ospfd.c (data_injection): Function to inject LSA. This is |
| 1467 | debugging command. |
| 1468 | |
| 1469 | 2001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1470 | |
| 1471 | * ospf_route.c (ospf_route_match_same): Remove function. |
| 1472 | (ospf_route_match_same_new): Renamed to ospf_route_match_same. |
| 1473 | |
| 1474 | * ospf_zebra.c (ospf_interface_address_delete): Add check for |
| 1475 | oi->address. Suggested by Matthew Grant |
| 1476 | <grantma@anathoth.gen.nz>. |
| 1477 | (ospf_zebra_add): Remove function. |
| 1478 | (ospf_zebra_add_multipath): Rename to ospf_zebra_add. |
| 1479 | |
| 1480 | * ospf_interface.c: Remove HAVE_IF_PSEUDO part. |
| 1481 | |
| 1482 | * ospf_zebra.c: Likewise. |
| 1483 | |
| 1484 | 2001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1485 | |
| 1486 | * ospf_ase.c: Remove OLD_RIB part. |
| 1487 | |
| 1488 | * ospf_route.c: Likewise. |
| 1489 | |
| 1490 | * zebra-0.90 is released. |
| 1491 | |
| 1492 | * ospf_packet.c (ospf_recv_packet): Use ip_len adjestment code to |
| 1493 | NetBSD. |
| 1494 | |
| 1495 | 2001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1496 | |
| 1497 | * ospf_route.c (ospf_route_delete): Use |
| 1498 | ospf_zebra_delete_multipath. |
| 1499 | |
| 1500 | 2001-01-09 Matthew Grant <grantma@anathoth.gen.nz> |
| 1501 | |
| 1502 | * ospf_interface.c (ospf_if_cleanup): Function name is renamed |
| 1503 | from ospf_if_free(). Rewrite whole procudure to support primary |
| 1504 | address deletion. |
| 1505 | |
| 1506 | * ospf_zebra.c (ospf_interface_address_delete): Add primary |
| 1507 | address deletion process. |
| 1508 | |
| 1509 | 2001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1510 | |
| 1511 | * ospf_packet.c (ospf_recv_packet): OpenBSD has same ip_len |
| 1512 | treatment like FreeBSD. |
| 1513 | |
| 1514 | 2001-01-09 endo@suri.co.jp (Masahiko Endo) |
| 1515 | |
| 1516 | * ospf_packet.c (ospf_recv_packet): FreeBSD kernel network code |
| 1517 | strips IP header size from receiving IP Packet. So we adjust |
| 1518 | ip_len to whole IP packet size by adding IP header size. |
| 1519 | |
| 1520 | 2001-01-08 endo@suri.co.jp (Masahiko Endo) |
| 1521 | |
| 1522 | * ospf_network.c (ospf_serv_sock): When socket() is failed return |
| 1523 | immediately. |
| 1524 | (ospf_serv_sock): Close socket when it is not used. |
| 1525 | |
| 1526 | * ospf_packet.c (ospf_write): Set sin_len when HAVE_SIN_LEN is |
| 1527 | defined. |
| 1528 | (ospf_write): When bind is fined, close sock. |
| 1529 | |
| 1530 | 2001-01-07 Gleb Natapov <gleb@nbase.co.il> |
| 1531 | |
| 1532 | * ospf_zebra.c (ospf_interface_state_up): Fixes coredump that |
| 1533 | appears when you try to configure bandwidth on the ppp interface |
| 1534 | that is not yet configured in ospfd. |
| 1535 | |
| 1536 | 2001-01-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1537 | |
| 1538 | * ospf_route.c (show_ip_ospf_route_external): "show ip ospf route" |
| 1539 | will print nexthops for AS-external routes. |
| 1540 | |
| 1541 | * ospf_ase.c (ospf_ase_route_match_same): New function to compare |
| 1542 | ASE route under multipath environment. |
| 1543 | (ospf_ase_compare_tables): Likewise. |
| 1544 | |
| 1545 | 2001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1546 | |
| 1547 | * ospfd.h (OSPF_VTYSH_PATH): Change "/tmp/ospfd" to "/tmp/.ospfd". |
| 1548 | |
| 1549 | 2000-12-28 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1550 | |
| 1551 | * ospf_route.c (ospf_route_install): Install multipath information |
| 1552 | to zebra daemon. |
| 1553 | |
| 1554 | * ospf_zebra.c (ospf_zebra_add_multipath): Function for passing |
| 1555 | multipath information to zebra daemon. |
| 1556 | |
| 1557 | 2000-12-25 Dick Glasspool <dick@ipinfusion.com> |
| 1558 | |
| 1559 | * ospf_packet.c (ospf_write): Call ospf_packet_delete when sendto |
| 1560 | fail. |
| 1561 | (DISCARD_LSA): Add argument N for logging point of DISCARD_LSA is |
| 1562 | called. |
| 1563 | |
| 1564 | * ospf_lsa.c (ospf_external_lsa_refresh): NSSA install_flood will |
| 1565 | leave Type-7 LSA at Lock Count = 2. |
| 1566 | |
| 1567 | * ospf_flood.c (ospf_flood_through): Flood_though_as updated for |
| 1568 | NSSA no P-bit off during Area flooding, but P-bit is turned off |
| 1569 | for mulitple NSSA AS flooding. |
| 1570 | |
| 1571 | * ospf_ase.c (ospf_ase_calculate_timer): Added calculations for |
| 1572 | Type-7 LSDB. |
| 1573 | |
| 1574 | * ospf_abr.c (ospf_abr_translate_nssa): Removed one unlock call. |
| 1575 | (ospf_abr_announce_nssa_defaults): Corrected Debug from EVENT to |
| 1576 | NSSA. |
| 1577 | |
| 1578 | 2000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1579 | |
| 1580 | * ospf_zebra.c (ospf_zebra_read_ipv4): Checking the age of the |
| 1581 | found LSA and if the LSA is MAXAGE we should call refresh instead |
| 1582 | of originate. |
| 1583 | |
| 1584 | 2000-12-18 Dick Glasspool <dick@ipinfusion.com> |
| 1585 | |
| 1586 | * ospf_abr.c: Removed redundant "...flood" in |
| 1587 | announce_network_to_area(). Repaired nssa Unlock by using |
| 1588 | discard. |
| 1589 | |
| 1590 | * ospf_packet.c: Removed old NSSA translate during mk_ls_update. |
| 1591 | |
| 1592 | * ospfd.c: Free up all data bases including NSSA. |
| 1593 | |
| 1594 | * ospf_lsa.c: Now allow removal of XLATE LSA's Check in |
| 1595 | discard_callback. Added routine to get ip addr from within the |
| 1596 | ifp. |
| 1597 | |
| 1598 | * ospf_flood.c: Now set Forward Address for outgoing Type-7. |
| 1599 | |
| 1600 | * ospf_lsa.h: Added prototype for the below. struct in_addr |
| 1601 | ospf_get_ip_from_ifp (struct interface *ifp). |
| 1602 | |
| 1603 | 2000-12-14 Gleb Natapov <gleb@nbase.co.il> |
| 1604 | |
| 1605 | * ospf_packet.c (ospf_recv_packet): New OSPF pakcet read method. |
| 1606 | Now maximum packet length may be 65535 bytes (maximum IP packet |
| 1607 | length). |
| 1608 | |
| 1609 | * ospf_interface.c (ospf_if_stream_set): Don't make input buffer. |
| 1610 | |
| 1611 | * ospfd.c (config_write_network_area): Remove unnecessary area |
| 1612 | lookup code. |
| 1613 | |
| 1614 | 2000-12-13 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1615 | |
| 1616 | * ospf_packet.c (ospf_read): Accept packet bigger than MTU value. |
| 1617 | |
| 1618 | 2000-12-13 Gleb Natapov <gleb@nbase.co.il> |
| 1619 | |
| 1620 | * ospfd.c (config_write_network_area): Fix bug in |
| 1621 | config_write_network_area function. |
| 1622 | |
| 1623 | 2000-12-12 Gleb Natapov <gleb@nbase.co.il> |
| 1624 | |
| 1625 | * ospf_abr.c (ospf_abr_announce_network_to_area): Make Summary |
| 1626 | LSA's origination and refreshment as same as other type of LSA. |
| 1627 | |
| 1628 | * ospf_lsa.c (ospf_summary_lsa_refresh): Return struct ospf_lsa *. |
| 1629 | |
| 1630 | * ospf_lsa.c (ospf_summary_asbr_lsa_refresh): Likewise. |
| 1631 | |
| 1632 | 2000-12-08 Dick Glasspool <dick@ipinfusion.com> |
| 1633 | |
| 1634 | The bulk of NSSA changes are contained herein; This version will |
| 1635 | require manual setting of "always" for NSSA Translator, and will |
| 1636 | not perform aggregation yet. |
| 1637 | |
| 1638 | * ospf_dump.c: "debug ospf nssa" is added. |
| 1639 | |
| 1640 | * ospf_dump.h: Likewise. |
| 1641 | |
| 1642 | * ospf_packet.c (ospf_hello): Display router ID on Bad NSSA Hello. |
| 1643 | |
| 1644 | * ospfd.c: Discard_LSA to stay away from LOCAL_XLT Process NSSA |
| 1645 | 'never, candidate, always'. Change "suppress" to "not-advertise". |
| 1646 | |
| 1647 | * ospfd.h: Add TranslatorRole to struct ospf_area. Add anyNSSA to |
| 1648 | struct ospf. |
| 1649 | |
| 1650 | * ospf_ase.c (ospf_ase_calculate_route): External to stay away |
| 1651 | from LOCAL_XLT |
| 1652 | |
| 1653 | * ospf_nsm.c (ospf_db_summary_add): External to stay away from |
| 1654 | LOCAL_XLT |
| 1655 | |
| 1656 | * ospf_abr.c: Major logic added for abr_nssa_task(). If ABR, and |
| 1657 | NSSA translator, then do it. Approve the global list, and flush |
| 1658 | any unapproved. |
| 1659 | |
| 1660 | * ospf_lsa.h: New LSA flag OSPF_LSA_LOCAL_XLT to indicate that the |
| 1661 | Type-5 resulted from a Local Type-7 translation; not used for |
| 1662 | flooding, but used for flushing. |
| 1663 | |
| 1664 | * ospf_flood.c: New NSSA flooding. |
| 1665 | |
| 1666 | 2000-12-08 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1667 | |
| 1668 | * ospfd.c (ospf_find_vl_data): New function for looking up virtual |
| 1669 | link data. |
| 1670 | (ospf_vl_set_security): Virtual link configuration with |
| 1671 | authentication. |
| 1672 | (ospf_vl_set_timers): Set timers for virtual link. |
| 1673 | |
| 1674 | * New commands are added. |
| 1675 | "area A.B.C.D virtual-link A.B.C.D" |
| 1676 | "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535>" |
| 1677 | "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535> authentication-key AUTH_KEY" |
| 1678 | "area A.B.C.D virtual-link A.B.C.D authentication-key AUTH_KEY" |
| 1679 | "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535> message-digest-key <1-255> md5 KEY" |
| 1680 | "area A.B.C.D virtual-link A.B.C.D message-digest-key <1-255> md5 KEY" |
| 1681 | |
| 1682 | * ospf_packet.c (ospf_check_md5_digest): Add neighbor's |
| 1683 | cryptographic sequence number treatment. |
| 1684 | (ospf_check_auth): OSPF input buffer is added to argument. |
| 1685 | (ospf_read): Save neighbor's cryptographic sequence number. |
| 1686 | |
| 1687 | * ospf_nsm.c (nsm_change_status): Clear cryptographic sequence |
| 1688 | number when neighbor status is changed to NSM down. |
| 1689 | |
| 1690 | * ospf_neighbor.c (ospf_nbr_new): Set zero to crypt_seqnum. |
| 1691 | |
| 1692 | * ospf_neighbor.h (struct ospf_neighbor): Add cryptographic |
| 1693 | sequence number to neighbor structure. |
| 1694 | |
| 1695 | 2000-11-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1696 | |
| 1697 | * ospf_snmp.c (ospfIfLookup): OSPF MIB updates. |
| 1698 | (ospfExtLsdbEntry): Add OspfExtLsdbTable treatment. |
| 1699 | |
| 1700 | 2000-11-28 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1701 | |
| 1702 | * ospfd.c (ospf_interface_down): Clear a ls_upd_queue queue of the |
| 1703 | interface. |
| 1704 | (ospf_ls_upd_queue_empty): New function to empty ls update queue |
| 1705 | of the OSPF interface. |
| 1706 | (no_router_ospf): 'no router ospf' unregister redistribution |
| 1707 | requests from zebra. |
| 1708 | |
| 1709 | 2000-11-28 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1710 | |
| 1711 | * ospf_ism.c (ism_change_status): Increment status change number. |
| 1712 | |
| 1713 | * ospf_interface.h (struct ospf_interface): Add new member for |
| 1714 | status change statistics. |
| 1715 | |
| 1716 | * Makefile.am: Update dependencies. |
| 1717 | |
| 1718 | * ospf_zebra.c (ospf_interface_add): OSPF SNMP interface update. |
| 1719 | (ospf_interface_delete): OSPF SNMP interface delete. |
| 1720 | |
| 1721 | * ospf_snmp.h: New file is added. |
| 1722 | |
| 1723 | 2000-11-23 Dick Glasspool <dick@ipinfusion.com> |
| 1724 | |
| 1725 | * ospfd.h: Add new ospf_area structure member for |
| 1726 | NSSATranslatorRole and NSSATranslator state. |
| 1727 | |
| 1728 | * ospfd.c: Provided for eventual commands to specify NSSA |
| 1729 | elections for "translator- ALWAYS/NEVER/CANDIDATE". Provided for |
| 1730 | decimal integer version of area-suppress. |
| 1731 | |
| 1732 | * ospf_flood.c: Flood Type-7's only into NSSA (not AS). |
| 1733 | |
| 1734 | * ospf_lsa.c: Undo some previous changes for NSSA. If NSSA |
| 1735 | translator, advertise Nt bit. |
| 1736 | |
| 1737 | * ospf_route.c: 1st version of "sh ip os border-routers". |
| 1738 | |
| 1739 | 2000-11-23 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1740 | |
| 1741 | * ospfd.c (area_vlink): Virtual link can not configured in stub |
| 1742 | area. |
| 1743 | |
| 1744 | 2000-11-23 Gleb Natapov <gleb@nbase.co.il> |
| 1745 | |
| 1746 | * ospf_packet.c (ospf_db_desc): In states Loading and Full the |
| 1747 | slave must resend its last Database Description packet in response |
| 1748 | to duplicate Database Description packets received from the |
| 1749 | master. For this reason the slave must wait RouterDeadInterval |
| 1750 | seconds before freeing the last Database Description packet. |
| 1751 | Reception of a Database Description packet from the master after |
| 1752 | this interval will generate a SeqNumberMismatch neighbor |
| 1753 | event. RFC2328 Section 10.8 |
| 1754 | (ospf_make_db_desc): DD Master flag treatment. |
| 1755 | |
| 1756 | * ospf_nsm.c (nsm_twoway_received): Move DD related procedure to |
| 1757 | nsm_change_status(). |
| 1758 | (nsm_bad_ls_req): Likewise. |
| 1759 | (nsm_adj_ok): Likewise. |
| 1760 | (nsm_seq_number_mismatch): Likewise. |
| 1761 | (nsm_oneway_received): Likewise. |
| 1762 | |
| 1763 | * ospf_neighbor.h (struct ospf_neighbor): New structure member |
| 1764 | last_send_ts for timestemp when last Database Description packet |
| 1765 | was sent. |
| 1766 | |
| 1767 | * ospf_nsm.c (ospf_db_desc_timer): Make it sure nbr->last_send is |
| 1768 | there. Call ospf_db_desc_resend() in any case. |
| 1769 | |
| 1770 | 2000-11-16 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1771 | |
| 1772 | * ospf_lsa.c (lsa_link_broadcast_set): When there is no DR on |
| 1773 | network (suppose you have only one router with interface priority |
| 1774 | 0). It's router LSA does not contain the link information about |
| 1775 | this network. |
| 1776 | |
| 1777 | * ospf_nsm.c (nsm_timer_set): When you change a priority of |
| 1778 | interface from/to 0 ISM_NeighborChange event should be scheduled |
| 1779 | in order to elect new DR/BDR on the network. |
| 1780 | |
| 1781 | * ospf_interface.c (ip_ospf_priority): Likewise. |
| 1782 | |
| 1783 | * ospf_flood.c (ospf_ls_retransmit_add): When we add some LSA into |
| 1784 | retransmit list we need to check whether the present old LSA in |
| 1785 | retransmit list is not more recent than the new |
| 1786 | one. |
| 1787 | |
| 1788 | 2000-11-09 Dick Glasspool <dick@ipinfusion.com> |
| 1789 | |
| 1790 | * ospf_packet.c: Allows for NSSA Type-7 LSA's throughout the NSSA |
| 1791 | area. Any that exit the NSSA area are translated to type-5 LSA's. |
| 1792 | The instantiated image is restored after translation. |
| 1793 | (ospf_ls_upd_send_list): Renamed to ospf_ls_upd_queu_send(). |
| 1794 | (ospf_ls_upd_send): Old function which enclosed by #ifdef 0 is |
| 1795 | removed. |
| 1796 | (ospf_ls_ack_send): Likewise. |
| 1797 | |
| 1798 | * ospf_flood.c: NSSA-LSA's without P-bit will be restricted to |
| 1799 | local area. Otherwise they are allowed out the area to be |
| 1800 | translated by ospf_packet.c. |
| 1801 | |
| 1802 | * ospf_lsa.c: Undo some previous changes for NSSA. |
| 1803 | |
| 1804 | * ospf_lsdb.h: New access for type 7. |
| 1805 | |
| 1806 | 2000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1807 | |
| 1808 | * ospf_route.c (ospf_path_exist): New function to check nexthop |
| 1809 | and interface are in current OSPF path or not. |
| 1810 | (ospf_route_copy_nexthops_from_vertex): Add nexthop to OSPF path |
| 1811 | when it is not there. Reported by Michael Rozhavsky |
| 1812 | <mrozhavsky@opticalaccess.com> |
| 1813 | |
| 1814 | 2000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1815 | |
| 1816 | * ospf_dump.c (config_write_debug): Add seventh string "detail" is |
| 1817 | added for flag is OSPF_DEBUG_SEND | OSPF_DEBUG_RECV | |
| 1818 | OSPF_DEBUG_DETAIL. |
| 1819 | |
| 1820 | 2000-11-06 Michael Rozhavsky <mrozhavsky@opticalaccess.com> |
| 1821 | |
| 1822 | * ospf_lsa.c (router_lsa_flags): ASBR can't exit in stub area. |
| 1823 | |
| 1824 | 2000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1825 | |
| 1826 | * ospf_lsa.c (ospf_router_lsa_originate): Reduce unconditional |
| 1827 | logging. |
| 1828 | |
| 1829 | 2000-11-06 Dick Glasspool <dick@ipinfusion.com> |
| 1830 | |
| 1831 | * ospfd.h: Add ait_ntoa function prototype. |
| 1832 | |
| 1833 | * ospfd.c (ait_ntoa): New function for displaying area ID and |
| 1834 | Stub/NSSA status. |
| 1835 | (show_ip_ospf_interface_sub): Use ait_ntoa. |
| 1836 | (show_ip_ospf_nbr_static_detail_sub): Likewise. |
| 1837 | (show_ip_ospf_neighbor_detail_sub): Likewise. |
| 1838 | |
| 1839 | * ospf_route.c (ospf_intra_route_add): Set external routing type |
| 1840 | to ospf route. |
| 1841 | (ospf_intra_add_router): Likewise. |
| 1842 | (ospf_intra_add_transit): Likewise. |
| 1843 | (ospf_intra_add_stub): Likewise. |
| 1844 | (ospf_add_discard_route): Likewise. |
| 1845 | (show_ip_ospf_route_network): Use ait_ntoa. |
| 1846 | (show_ip_ospf_route_network): Likewise. |
| 1847 | (show_ip_ospf_route_router): Likewise. |
| 1848 | |
| 1849 | * ospf_lsa.c (show_lsa_detail): Use ait_ntoa. |
| 1850 | (show_lsa_detail_adv_router): Likewise. |
| 1851 | (show_ip_ospf_database_summary): Likewise. |
| 1852 | |
| 1853 | * ospf_route.h (struct route_standard): Add new member |
| 1854 | external_routing. |
| 1855 | |
| 1856 | * ospf_ia.c (process_summary_lsa): Set external routing tyep to ospf |
| 1857 | route. |
| 1858 | (ospf_update_network_route): Likewise. |
| 1859 | (ospf_update_router_route): Likewise. |
| 1860 | |
| 1861 | 2000-11-04 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1862 | |
| 1863 | * ospf_flood.c (ospf_process_self_originated_lsa): Enclose |
| 1864 | OSPF_AS_NSSA_LSA treatment with #ifdef HAVE_NSSA. |
| 1865 | |
| 1866 | 2000-11-03 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1867 | |
| 1868 | * Unconditional logging is enclosed with if (IS_DEBUG_OSPF_EVENT). |
| 1869 | Please specify "debug ospf event" for enable logging. |
| 1870 | |
| 1871 | * ospf_ism.c: Do not extern debug flag varible. It is done by |
| 1872 | ospf_debug.h |
| 1873 | * ospf_asbr.c: Likewise. |
| 1874 | * ospf_lsa.c: Likewise. |
| 1875 | * ospf_nsm.c: Likewise. |
| 1876 | * ospf_zebra.c: Likewise. |
| 1877 | |
| 1878 | * ospf_dump.c (debug_ospf_event): New command "debug ospf event" |
| 1879 | is added. |
| 1880 | |
| 1881 | * ospfd.c (router_ospf): Change logging from vty_out() to |
| 1882 | zlog_info(). |
| 1883 | (ospf_area_stub_cmd): Likewise. |
| 1884 | |
| 1885 | * ospf_dump.h: Extern term_debug flags. |
| 1886 | (OSPF_DEBUG_EVENT): Add new flag. |
| 1887 | (IS_DEBUG_OSPF_EVENT): Add new macro. |
| 1888 | |
| 1889 | 2000-11-03 Dick Glasspool <dick@ipinfusion.com> |
| 1890 | |
| 1891 | * ospf_flood.c (ospf_process_self_originated_lsa): |
| 1892 | OSPF_AS_NSSA_LSA is treated as same as OSPF_AS_EXTERNAL_LSA. |
| 1893 | (ospf_flood): Type-5's have no change. Type-7's can be received, |
| 1894 | and will Flood the AS as Type-5's They will also flood the local |
| 1895 | NSSA Area as Type-7's. The LSDB will be updated as Type-5's, and |
| 1896 | during re-fresh will be converted back to Type-7's (if within an |
| 1897 | NSSA). |
| 1898 | (ospf_flood_through): Incoming Type-7's were allowed here if our |
| 1899 | neighbor was an NSSA. So Flood our area with the Type-7 and also |
| 1900 | if we are an ABR, flood thru AS as Type-5. |
| 1901 | |
| 1902 | * ospf_lsa.c (ospf_external_lsa_refresh): Flood NSSA both NSSA |
| 1903 | area and other area. |
| 1904 | |
| 1905 | * ospf_packet.c (ospf_db_desc_proc): When AS External LSA is |
| 1906 | exists in DD packet, make it sure that this area is not stub. |
| 1907 | (ospf_ls_upd_list_lsa): When LSA type is NSSA then set lsa's area |
| 1908 | to NULL. |
| 1909 | (ospf_ls_upd): If the LSA is AS External LSA and the area is stub |
| 1910 | then discard the lsa. If the LSA is NSSA LSA and the area is not |
| 1911 | NSSA then discard the lsa. |
| 1912 | |
| 1913 | 2000-11-03 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1914 | |
| 1915 | * ospfd.c (ospf_interface_run): Fix bug of Hello packet's option |
| 1916 | is not properly set when interface comes up. |
| 1917 | |
| 1918 | 2000-11-02 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1919 | |
| 1920 | * ospfd.h (OSPF_OPTION_O): Add new hello header option. |
| 1921 | |
| 1922 | 2000-11-01 Dick Glasspool <dick@ipinfusion.com> |
| 1923 | |
| 1924 | * ospf_lsa.h: Define OSPF_MAX_LSA to 8 when HAVE_NSSA is enabled. |
| 1925 | (OSPF_GROUP_MEMBER_LSA): Define OSPF_GROUP_MEMBER_LSA. |
| 1926 | |
| 1927 | * ospf_lsa.c (show_database_desc): Add "Group Membership LSA" |
| 1928 | string. |
| 1929 | |
| 1930 | 2000-10-31 Dick Glasspool <dick@ipinfusion.com> |
| 1931 | |
| 1932 | * ospf_lsa.h (OSPF_AS_NSSA_LSA): Define OSPF_AS_NSSA_LSA. |
| 1933 | |
| 1934 | * ospf_lsa.c (show_ip_ospf_database): NSSA database display |
| 1935 | function is added. ALIASES which have "show ip ospf database |
| 1936 | nssa-external" is added. |
| 1937 | (show_ip_ospf_border_routers): New command "show ip ospf |
| 1938 | border-routers" is added. |
| 1939 | |
| 1940 | 2000-10-30 Dick Glasspool <dick@ipinfusion.com> |
| 1941 | |
| 1942 | * ospfd.c (router_ospf): NSSA Enabled message is added for |
| 1943 | testing. |
| 1944 | (ospf_area_type_set): Are type set for NSSA area. |
| 1945 | (ospf_area_stub_cmd): Special translation of no_summary into NSSA |
| 1946 | and summary information. If NSSA is enabled pass the information |
| 1947 | to ospf_area_type_set(). |
| 1948 | (area_nssa): New commands are added: |
| 1949 | "area A.B.C.D nssa" |
| 1950 | "area <0-4294967295> nssa" |
| 1951 | "area A.B.C.D nssa no-summary" |
| 1952 | "area <0-4294967295> nssa no-summary" |
| 1953 | (ospf_no_area_stub_cmd): Special translation of no_summary into |
| 1954 | NSSA and summary information. If external_routing is |
| 1955 | OSPF_AREA_NSSA unset area with ospf_area_type_set (area, |
| 1956 | OSPF_AREA_DEFAULT). |
| 1957 | (show_ip_ospf_area): Display NSSA status. |
| 1958 | (config_write_ospf_area): Show NSSA configuration. |
| 1959 | |
| 1960 | * ospf_packet.c (ospf_hello): For NSSA support, ensure that NP is |
| 1961 | on and E is off. |
| 1962 | |
| 1963 | 2000-10-26 Gleb Natapov <gleb@nbase.co.il> |
| 1964 | |
| 1965 | * ospf_lsa.c (ospf_network_lsa_body_set): The network-LSA lists |
| 1966 | those routers that are fully adjacent to the Designated Router; |
| 1967 | each fully adjacent router is identified by its OSPF Router ID. |
| 1968 | The Designated Router includes itself in this list. RFC2328, |
| 1969 | Section 12.4.2. |
| 1970 | |
| 1971 | 2000-10-23 Jochen Friedrich <jochen@scram.de> |
| 1972 | |
| 1973 | * ospf_snmp.c: ospf_oid and ospfd_oid are used in smux_open after |
| 1974 | it is registered. So those variables must be static. |
| 1975 | |
| 1976 | 2000-10-18 K N Sridhar <sridhar@euler.ece.iisc.ernet.in> |
| 1977 | |
| 1978 | * ospfd.c: Add area_default_cost_decimal_cmd and |
| 1979 | no_area_default_cost_decimal_cmd alias. |
| 1980 | |
| 1981 | 2000-10-05 Gleb Natapov <gleb@nbase.co.il> |
| 1982 | |
| 1983 | * ospfd.c (ospf_network_new): Fix setting area format. |
| 1984 | (no_router_ospf): Check area existance when calling |
| 1985 | ospf_interface_down(). |
| 1986 | |
| 1987 | * ospf_flood.c (ospf_external_info_check): Fix bug of refreshing |
| 1988 | default route. |
| 1989 | |
| 1990 | 2000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1991 | |
| 1992 | * zebra-0.89 is released. |
| 1993 | |
| 1994 | 2000-09-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 1995 | |
| 1996 | * ospf_snmp.c (ospfHostEntry): OSPF Host MIB is implemented. |
| 1997 | |
| 1998 | * ospfd.c (ospf_nbr_static_cmp): OSPF neighbor is sorted by it's |
| 1999 | address. |
| 2000 | |
| 2001 | 2000-09-28 Michael Rozhavsky <mike@nbase.co.il> |
| 2002 | |
| 2003 | * ospf_interface.c (ospf_if_free): Fix deleting self neighbor twice. |
| 2004 | |
| 2005 | 2000-09-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2006 | |
| 2007 | * ospf_packet.c (ospf_read): Solaris on x86 has ip_len with host |
| 2008 | byte order. |
| 2009 | |
| 2010 | 2000-09-25 Toshiaki Takada <takada@zebra.org> |
| 2011 | |
| 2012 | * ospfd.c (ospf_compatible_rfc1583), (no_ospf_compatible_rfc1583): |
| 2013 | Add CISCO compatible command. |
| 2014 | |
| 2015 | 2000-09-25 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2016 | |
| 2017 | * ospf_abr.c (ospf_area_range_lookup): New function is added for |
| 2018 | area range lookup in OSPF-MIB. |
| 2019 | (ospf_area_range_lookup_next): Likewise. |
| 2020 | |
| 2021 | 2000-09-22 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2022 | |
| 2023 | * ospfd.c (no_router_ospf): Delete virtual link before deleting |
| 2024 | area structure. |
| 2025 | |
| 2026 | * ospf_lsa.c (ospf_external_lsa_refresh_type): Check |
| 2027 | EXTERNAL_INFO(type). |
| 2028 | |
| 2029 | * ospfd.c (no_router_ospf): Call ospf_vl_delete() instead of |
| 2030 | ospf_vl_data_free(). |
| 2031 | |
| 2032 | * ospf_interface.c (ospf_vl_shutdown): Execute ISM_InterfaceDown |
| 2033 | when ospf_vl_shutdown is called. |
| 2034 | (ospf_vl_delete): Call ospf_vl_shutdown() to delete virtual link |
| 2035 | interface's thread. |
| 2036 | |
| 2037 | 2000-09-21 Gleb Natapov <gleb@nbase.co.il> |
| 2038 | |
| 2039 | * ospf_lsa.c: New implementation of OSPF refresh. |
| 2040 | |
| 2041 | 2000-09-20 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2042 | |
| 2043 | * ospf_snmp.c (ospfLsdbLookup): Add LSDB MIB implementation. |
| 2044 | |
| 2045 | 2000-09-18 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2046 | |
| 2047 | * ospf_snmp.c (ospfStubAreaEntry): Add OSPF stub area MIB. |
| 2048 | |
| 2049 | 2000-09-18 Gleb Natapov <gleb@nbase.co.il> |
| 2050 | |
| 2051 | * ospf_route.h (route_standard): Change member from `struct area' |
| 2052 | to area_id. |
| 2053 | |
| 2054 | * ospf_abr.c (ospf_abr_announce_network), (ospf_abr_should_announce), |
| 2055 | (ospf_abr_process_network_rt), (ospf_abr_announce_rtr), |
| 2056 | (ospf_abr_process_router_rt): |
| 2057 | * ospf_ase.c (ospf_find_asbr_route), |
| 2058 | (ospf_find_asbr_router_through_area), |
| 2059 | * ospf_ia.c (ospf_find_abr_route), (ospf_ia_router_route), |
| 2060 | (process_summary_lsa), (ospf_update_network_route), |
| 2061 | (ospf_update_router_route): |
| 2062 | * ospf_route.c (ospf_intra_route_add), (ospf_intra_add_router), |
| 2063 | (ospf_intra_add_transit), (ospf_intra_add_stub), |
| 2064 | (ospf_route_table_dump), (show_ip_ospf_route_network), |
| 2065 | (show_ip_ospf_route_router), (ospf_asbr_route_cmp), |
| 2066 | (ospf_prune_unreachable_routers): |
| 2067 | * ospf_spf.c (ospf_rtrs_print): |
| 2068 | * ospfd.c (ospf_rtrs_free): Fix the struct change above. |
| 2069 | |
| 2070 | 2000-09-14 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2071 | |
| 2072 | * ospf_network.c (ospf_serv_sock_init): Enclose SO_BINDTODEVICE |
| 2073 | with ifdef. |
| 2074 | |
| 2075 | 2000-09-13 Gleb Natapov <gleb@nbase.co.il> |
| 2076 | |
| 2077 | * ospf_ism.c (ospf_elect_dr), (ospf_elect_bdr): Fix DR election. |
| 2078 | |
| 2079 | * ospf_network.c (ospf_serv_sock_init): Add socket option |
| 2080 | SO_BINDTODEVICE on read socket. |
| 2081 | |
| 2082 | * ospf_packet.c (ospf_hello): Ignore Hello packet if E-bit does |
| 2083 | not match. |
| 2084 | |
| 2085 | * ospfd.c (ospf_area_check_free), (ospf_area_get), |
| 2086 | (ospf_area_add_if): New function added. |
| 2087 | |
| 2088 | 2000-09-13 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2089 | |
| 2090 | * ospf_route.c (ospf_intra_add_router): Update ABR and ASBR router |
| 2091 | count. |
| 2092 | |
| 2093 | * ospf_spf.c (ospf_spf_init): Rest ABR and ASBR router count |
| 2094 | starting SPF calculation. |
| 2095 | |
| 2096 | * ospfd.h (struct ospf_area): Add ABR and ASBR router count. |
| 2097 | |
| 2098 | 2000-09-12 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2099 | |
| 2100 | * ospfd.c (ospf_area_id_cmp): New area structure is sorted by area |
| 2101 | ID. |
| 2102 | |
| 2103 | * ospf_lsa.c (ospf_router_lsa_originate): For OSPF MIB update |
| 2104 | lsa_originate_count. |
| 2105 | (ospf_network_lsa_originate): Likewise. |
| 2106 | (ospf_summary_lsa_originate): Likewise. |
| 2107 | (ospf_summary_asbr_lsa_originate): Likewise. |
| 2108 | (ospf_external_lsa_originate): Likewise. |
| 2109 | |
| 2110 | 2000-09-11 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2111 | |
| 2112 | * ospf_snmp.c (ospf_variables): ospfRouterID's type RouterID |
| 2113 | syntax is IpAddress. |
| 2114 | (ospf_admin_stat): New function for OSPF administrative status |
| 2115 | check. |
| 2116 | |
| 2117 | 2000-09-10 Jochen Friedrich <jochen@scram.de> |
| 2118 | |
| 2119 | * ospf_snmp.c: Implement OSPF MIB skeleton. |
| 2120 | |
| 2121 | 2000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2122 | |
| 2123 | * ospf_snmp.c: New file is added. |
| 2124 | |
| 2125 | 2000-09-07 David Lipovkov <davidl@nbase.co.il> |
| 2126 | |
| 2127 | * ospf_zebra.c (ospf_interface_delete): Add pseudo interface |
| 2128 | treatment. |
| 2129 | |
| 2130 | * ospf_interface.c (interface_config_write): Likewise. |
| 2131 | |
| 2132 | 2000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2133 | |
| 2134 | * zebra-0.88 is released. |
| 2135 | |
| 2136 | 2000-08-17 Michael Rozhavsky <mike@nbase.co.il> |
| 2137 | |
| 2138 | * ospfd.c (ospf_area_free): Remove virtual link configuration only |
| 2139 | when Area is removed. |
| 2140 | |
| 2141 | 2000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2142 | |
| 2143 | * ospfd.c (network_area): Revert check for EXTERNAL_INFO |
| 2144 | (ZEBRA_ROUTE_CONNECT). |
| 2145 | (no_network_area): Likewise. |
| 2146 | |
| 2147 | 2000-08-16 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2148 | |
| 2149 | * ospfd.h (struct ospf): Add distance_table and |
| 2150 | distance_{all,intra,inter,external}. |
| 2151 | |
| 2152 | * ospf_zebra.c: Add OSPF distance related functions. |
| 2153 | |
| 2154 | 2000-08-15 Gleb Natapov <gleb@nbase.co.il> |
| 2155 | |
| 2156 | * ospf_asbr.c (ospf_external_info_find_lsa): New function added. |
| 2157 | |
| 2158 | * ospf_lsa.c (ospf_default_external_info), |
| 2159 | (ospf_default_originate_timer), (ospf_external_lsa_refresh_default): |
| 2160 | New function added. |
| 2161 | |
| 2162 | * ospf_zebra.c |
| 2163 | (ospf_default_information_originate_metric_type_routemap), |
| 2164 | (ospf_default_information_originate_always_metric_type_routemap): |
| 2165 | Change name and add route-map function. |
| 2166 | (ospf_default_information_originate_metric_routemap), |
| 2167 | (ospf_default_information_originate_routemap), |
| 2168 | (ospf_default_information_originate_type_metric_routemap): |
| 2169 | New DEFUN added. |
| 2170 | |
| 2171 | 2000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2172 | |
| 2173 | * ospf_zebra.c (zebra_interface_if_set_value): Change ifindex |
| 2174 | restore size from two octet to four. |
| 2175 | |
| 2176 | 2000-08-14 Michael Rozhavsky <mike@nbase.co.il> |
| 2177 | |
| 2178 | * ospf_ase.c (ospf_ase_incremental_update): Implement incremental |
| 2179 | AS-external-LSA in 16.6 of RFC2328. |
| 2180 | |
| 2181 | 2000-08-14 Matthew Grant <grantma@anathoth.gen.nz> |
| 2182 | |
| 2183 | * ospf_interface.c (ospf_if_get_output_cost): Change cost |
| 2184 | calculation algorithm. |
| 2185 | |
| 2186 | * ospf_packet (ospf_ls_upd): Fix problem of LSA retransmitting. |
| 2187 | |
| 2188 | 2000-08-11 Michael Rozhavsky <mike@nbase.co.il> |
| 2189 | |
| 2190 | * ospf_lsa.c (ospf_maxage_lsa_remover): Fix maxage remover for |
| 2191 | AS-external-LSAs. |
| 2192 | |
| 2193 | 2000-08-10 Toshiaki Takada <takada@zebra.org> |
| 2194 | |
| 2195 | * ospfd.c (auto_cost_reference_bandwidth): New DEFUN added. |
| 2196 | `auto-cost reference-bandwidth' OSPF router command added. |
| 2197 | |
| 2198 | 2000-08-08 Gleb Natapov <gleb@nbase.co.il> |
| 2199 | |
| 2200 | * ospf_routemap.c (ospf_route_map_update): New function added. |
| 2201 | Add route-map event hook. |
| 2202 | |
| 2203 | 2000-08-08 Toshiaki Takada <takada@zebra.org> |
| 2204 | |
| 2205 | * ospf_zebra.c (ospf_distribute_check_connected): If redistribute |
| 2206 | prefix is connected route on OSPF enabled interface, suppress to |
| 2207 | announce it. |
| 2208 | |
| 2209 | 2000-08-08 Matthew Grant <grantma@anathoth.gen.nz> |
| 2210 | |
| 2211 | * ospf_interface.c (ospf_if_get_output_cost): |
| 2212 | New function added. Handle bandwidth parameter for cost |
| 2213 | calculation. |
| 2214 | |
| 2215 | 2000-08-08 Michael Rozhavsky <mike@nbase.co.il> |
| 2216 | |
| 2217 | * ospf_interface.c (interface_config_write): Show interface |
| 2218 | configuration regardless interface is down. |
| 2219 | |
| 2220 | * ospf_ase.c (ospf_ase_caocluate_route): Whole rewritten external |
| 2221 | route calculate function. |
| 2222 | |
| 2223 | 2000-08-08 Gleb Natapov <gleb@nbase.co.il> |
| 2224 | |
| 2225 | * ospf_routemap.c: New file added. |
| 2226 | |
| 2227 | * ospf_asbr.c (ospf_reset_route_map_set_values), |
| 2228 | (ospf_route_map_set_compare): New function added. |
| 2229 | |
| 2230 | * ospf_lsa.c (ospf_external_lsa_body_set): Set routemap metric |
| 2231 | with AS-external-LSA. |
| 2232 | |
| 2233 | 2000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2234 | |
| 2235 | * ospf_ase.c (ospf_ase_calculate_route_add): Pass new->cost to |
| 2236 | ospf_zebra_add as metric. |
| 2237 | (ospf_ase_calculate_route_add): Likewise. |
| 2238 | |
| 2239 | * ospf_route.c (ospf_route_install): Pass or->cost to |
| 2240 | ospf_zebra_add as metric. |
| 2241 | |
| 2242 | * ospf_zebra.c (ospf_zebra_add): Add metric arguemnt. |
| 2243 | (ospf_zebra_delete): Likewise. |
| 2244 | |
| 2245 | 2000-08-03 Matthew Grant <grantma@anathoth.gen.nz> |
| 2246 | |
| 2247 | * ospf_flood.c (ospf_flood_delayed_lsa_ack): New function added. |
| 2248 | Dispatch delayed-ACK with flooding AS-external-LSA across virtual |
| 2249 | link. |
| 2250 | |
| 2251 | 2000-07-31 Matthew Grant <grantma@anathoth.gen.nz> |
| 2252 | |
| 2253 | * ospfd.c (show_ip_ospf_area): Fix lack of VTY_NEWLINE when |
| 2254 | `show ip ospf'. |
| 2255 | |
| 2256 | * ospf_interface.c (ospf_if_free): Fix bug of crash with |
| 2257 | Point-to-Point interface. |
| 2258 | |
| 2259 | 2000-07-27 Michael Rozhavsky <mike@nbase.co.il> |
| 2260 | |
| 2261 | * ospf_flood.c (ospf_process_self_originated_lsa): |
| 2262 | Make sure to clear LSA->param (redistributed external information) |
| 2263 | before refreshment. |
| 2264 | |
| 2265 | 2000-07-27 Gleb Natapov <gleb@nbase.co.il> |
| 2266 | |
| 2267 | * ospfd.c (refresh_group_limit), (refresh_per_slice), |
| 2268 | (refresh_age_diff): New defun added. Refresher related parameter |
| 2269 | can be configurable. |
| 2270 | |
| 2271 | 2000-07-27 Akihiro Mizutani <mizutani@dml.com> |
| 2272 | |
| 2273 | * ospf_interface.c (interface_config_write): Print `description' |
| 2274 | config directive to work. |
| 2275 | |
| 2276 | 2000-07-24 Akihiro Mizutani <mizutani@dml.com> |
| 2277 | |
| 2278 | * ospf_interface.c (ospf_if_init): Use install_default for |
| 2279 | INTERFACE_NODE. |
| 2280 | |
| 2281 | 2000-07-24 Gleb Natapov <gleb@nbase.co.il> |
| 2282 | |
| 2283 | * ospf_packet.c (ospf_ls_upd_send_list), (ospf_ls_upd_send_event), |
| 2284 | (ospf_ls_ack_send_list), (ospf_ls_ack_send_event): New function added. |
| 2285 | This make sending always as many LS update/Ack combined in one ospf |
| 2286 | packet. |
| 2287 | |
| 2288 | 2000-07-24 Gleb Natapov <gleb@nbase.co.il> |
| 2289 | |
| 2290 | * ospf_packet.c (ospf_ls_upd_list_lsa): Set NULL to lsa->area if |
| 2291 | LSA is AS-external-LSA. |
| 2292 | |
| 2293 | * ospf_nsm.c (nsm_reset_nbr): Do not cancel Inactivity timer. |
| 2294 | |
| 2295 | 2000-07-21 Toshiaki Takada <takada@zebra.org> |
| 2296 | |
| 2297 | * ospf_zebra.c (ospf_default_originate_timer): Set timer for |
| 2298 | `default-information originate'. Fix some default originate |
| 2299 | related functions. |
| 2300 | |
| 2301 | 2000-07-12 Toshiaki Takada <takada@zebra.org> |
| 2302 | |
| 2303 | * ospf_lsa.c (stream_put_ospf_metric): New function added. |
| 2304 | |
| 2305 | 2000-07-12 Toshiaki Takada <takada@zebra.org> |
| 2306 | |
| 2307 | * ospf_lsa.c (show_ip_ospf_database_router), |
| 2308 | (show_ip_ospf_database_network), (show_ip_ospf_database_summary), |
| 2309 | (show_ip_ospf_database_summary_asbr), (show_ip_ospf_database_externel), |
| 2310 | (show_router_lsa), (show_any_lsa), (show_router_lsa_self), |
| 2311 | (show_any_lsa_self): Functions removed. |
| 2312 | |
| 2313 | (show_lsa_prefix_set), (show_lsa_detail_proc), (show_lsa_detail), |
| 2314 | (show_lsa_detail_adv_router_proc), (show_lsa_detail_adv_router): |
| 2315 | New functions added. Replace above functions. |
| 2316 | |
| 2317 | (show_ip_ospf_database_all), (show_ip_ospf_database_self_originated): |
| 2318 | Functions removed. |
| 2319 | (show_ip_ospf_database_summary): New functions added. Replace |
| 2320 | above functions. |
| 2321 | |
| 2322 | (show_ip_ospf_database_cmd): DEFUN rearranged. |
| 2323 | (show_ip_ospf_database_type_id_cmd), |
| 2324 | (show_ip_ospf_database_type_id_adv_router_cmd), |
| 2325 | (show_ip_ospf_database_type_is_self_cmd): New ALIASes added. |
| 2326 | (show_ip_ospf_database_type_adv_rotuer_cmd): New DEFUN added. |
| 2327 | (show_ip_ospf_database_type_self_cmd): New ALIAS added. |
| 2328 | |
| 2329 | 2000-07-11 Toshiaki Takada <takada@zebra.org> |
| 2330 | |
| 2331 | * ospf_asbr.c (ospf_external_info_new), |
| 2332 | (ospf_external_info_free): New functions added. |
| 2333 | |
| 2334 | * ospf_lsa.h (ospf_lsa): Add new member `void *param' to set |
| 2335 | origination parameter for external-LSA. |
| 2336 | Remove member `redistribute'. |
| 2337 | |
| 2338 | * ospf_zebra.c (ospf_redistirbute_set): When `redistribute' |
| 2339 | command executed, metric and metric-type values are overridden. |
| 2340 | If one of those is changed refresh AS-external-LSAs for appropriate |
| 2341 | type. |
| 2342 | |
| 2343 | 2000-07-11 Michael Rozhavsky <mike@nbase.co.il> |
| 2344 | |
| 2345 | * ospf_lsa.c (ospf_summary_lsa_refresh), |
| 2346 | (ospf_summary_asbr_lsa_refresh): Make sure to refresh summary-LSAs. |
| 2347 | |
| 2348 | * ospf_abr.c (set_metric): New function added. |
| 2349 | |
| 2350 | 2000-07-07 Toshiaki Takada <takada@zebra.org> |
| 2351 | |
| 2352 | * ospf_zebra.c (ospf_default_information_originate_metric_type), |
| 2353 | (ospf_default_information_originate_type_metric): New defun added. |
| 2354 | Metic and Metric type can be set to default route. |
| 2355 | (ospf_default_information_originate_always_metric_type): |
| 2356 | (ospf_default_information_originate_always_type_metric): |
| 2357 | New defun added. Metric and Metric type can be set to default |
| 2358 | always route. |
| 2359 | |
| 2360 | * ospf_zebra.c (ospf_default_metric), (no_ospf_default_metric): |
| 2361 | New defun added. |
| 2362 | |
| 2363 | 2000-07-06 Gleb Natapov <gleb@nbase.co.il> |
| 2364 | |
| 2365 | * ospf_flood.c (ospf_flood_through_area): Fix bug of considering |
| 2366 | on the same interface the LSA was received from. |
| 2367 | |
| 2368 | 2000-07-06 Michael Rozhavsky <mike@nbase.co.il> |
| 2369 | |
| 2370 | * ospfd.c (ospf_config_write): Fix bug of printing `area stub' |
| 2371 | command with `write mem'. |
| 2372 | |
| 2373 | * ospfd.c (no_router_ospf): Remove installed routes from zebra. |
| 2374 | |
| 2375 | * ospf_zebra.c (ospf_interface_delete): Fix function to handle |
| 2376 | zebra interface delete event. |
| 2377 | |
| 2378 | 2000-07-06 Toshiaki Takada <takada@zebra.org> |
| 2379 | |
| 2380 | * ospf_zebra.c (ospf_default_information_originate), |
| 2381 | (ospf_default_information_originate_always): New DEFUN added. |
| 2382 | |
| 2383 | 2000-07-05 Michael Rozhavsky <mike@nbase.co.il> |
| 2384 | |
| 2385 | * ospf_route.c (ospf_terminate): Make sure to remove external route |
| 2386 | when SIGINT received. |
| 2387 | |
| 2388 | 2000-07-03 Gleb Natapov <gleb@nbase.co.il> |
| 2389 | |
| 2390 | * ospf_flood.c, ospf_ism.c, ospf_lsa,c, ospfd.c: Make sure to free |
| 2391 | many structure with `no router ospf'. |
| 2392 | |
| 2393 | 2000-06-30 Gleb Natapov <gleb@nbase.co.il> |
| 2394 | |
| 2395 | * ospf_neighbor.c (ospf_nbr_new), |
| 2396 | ospf_nsm.c (nsm_timer_set): Start LS update timer only |
| 2397 | when neighbor enters Exchange state. |
| 2398 | |
| 2399 | 2000-06-29 Gleb Natapov <gleb@nbase.co.il> |
| 2400 | |
| 2401 | * ospf_nsm.c (nsm_timer_set), (nsm_exchange_done), |
| 2402 | ospf_packet.c (ospf_db_desc_proc): |
| 2403 | Do not cancel DD retransmit timer when Master. |
| 2404 | |
| 2405 | 2000-06-29 Gleb Natapov <gleb@nbase.co.il> |
| 2406 | |
| 2407 | * ospf_abr.c (ospf_abr_announce_network_to_area), |
| 2408 | (ospf_abr_announce_rtr_to_area) |
| 2409 | ospf_ase.c (ospf_ase_rtrs_register_lsa), |
| 2410 | ospf_flood.c (ospf_process_self_originated_lsa), |
| 2411 | (ospf_flood_through_area), (ospf_ls_request_delete), |
| 2412 | ospf_interface.c (ospf_if_free), |
| 2413 | ospf_ism.c (ism_change_status), |
| 2414 | ospf_lsa.c (ospf_router_lsa_update_timer), |
| 2415 | (ospf_router_lsa_install), (ospf_network_lsa_install), |
| 2416 | (ospf_lsa_maxage_delete), (ospf_lsa_action), |
| 2417 | (ospf_schedule_lsa_flood_area), |
| 2418 | ospf_nsm.c (nsm_change_status), |
| 2419 | ospf_packet.c (ospf_make_ls_req_func), (ospf_make_ls_ack): |
| 2420 | Use ospf_lsa_{lock,unlock} for all looking-up of LSA. |
| 2421 | |
| 2422 | * ospf_flood.c (ospf_ls_request_free): Function deleted. |
| 2423 | |
| 2424 | * ospf_lsa.c (ospf_discard_from_db): New function added. |
| 2425 | |
| 2426 | 2000-06-26 Toshiaki Takada <takada@zebra.org> |
| 2427 | |
| 2428 | * ospfd.h (ospf): struct member `external_lsa' name changed to |
| 2429 | `lsdb'. |
| 2430 | |
| 2431 | 2000-06-26 Toshiaki Takada <takada@zebra.org> |
| 2432 | |
| 2433 | * ospf_lsa.c (ospf_lsa_install), (ospf_router_lsa_install), |
| 2434 | (ospf_network_lsa_install), (ospf_summary_lsa_install), |
| 2435 | (ospf_summary_asbr_lsa_install), (ospf_external_lsa_install): |
| 2436 | Functions re-arranged. |
| 2437 | |
| 2438 | * ospf_lsa.c (IS_LSA_MAXAGE), (IS_LSA_SELF): Macro added. |
| 2439 | |
| 2440 | 2000-06-20 Michael Rozhavsky <mike@nbase.co.il> |
| 2441 | |
| 2442 | * ospf_packet.c (ospf_ls_req), (ospf_ls_upd), (ospf_ls_ack): Add |
| 2443 | verification of LS type. |
| 2444 | |
| 2445 | 2000-06-20 Gleb Natapov <gleb@nbase.co.il> |
| 2446 | |
| 2447 | * ospf_ase.c (ospf_ase_calculate_timer): Add more sanity check |
| 2448 | whether rn->info is NULL. |
| 2449 | |
| 2450 | 2000-06-20 Toshiaki Takada <takada@zebra.org> |
| 2451 | |
| 2452 | * ospfd.c (show_ip_ospf_interface_sub): Show Router-ID of both |
| 2453 | DR and Backup correctly with `show ip ospf interface' command. |
| 2454 | |
| 2455 | 2000-06-20 Toshiaki Takada <takada@zebra.org> |
| 2456 | |
| 2457 | * ospf_lsa.c (ospf_lsa_lock), (ospf_lsa_unlock), |
| 2458 | (ospf_lsa_discard): These functions are used for avoiding |
| 2459 | unexpected reference to freed LSAs. |
| 2460 | |
| 2461 | 2000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2462 | |
| 2463 | * ospf_packet.c (ospf_ls_upd): Initialize lsa by NULL to avoid |
| 2464 | warning. |
| 2465 | |
| 2466 | 2000-06-12 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2467 | |
| 2468 | * ospf_ase.h (ospf_ase_rtrs_register_lsa): Add prototype. |
| 2469 | |
| 2470 | 2000-06-12 Toshiaki Takada <takada@zebra.org> |
| 2471 | |
| 2472 | * ospf_lsa.c (ospf_external_lsa_install): Make sure to register |
| 2473 | LSA to rtrs_external when replacing AS-external-LSAs in LSDB. |
| 2474 | Fix core dump. |
| 2475 | |
| 2476 | 2000-06-10 Toshiaki Takada <takada@zebra.org> |
| 2477 | |
| 2478 | * ospf_lsdb.c (id_to_prefix), (ospf_lsdb_hash_key), |
| 2479 | (ospf_lsdb_hash_cmp), (ospf_lsdb_new), (ospf_lsdb_iterator), |
| 2480 | (lsdb_free), (ospf_lsdb_free), (ospf_lsdb_add), (ospf_lsdb_delete), |
| 2481 | (find_lsa), (ospf_lsdb_lookup), (find_by_id), |
| 2482 | (ospf_lsdb_lookup_by_id), (ospf_lsdb_lookup_by_header): Functinos |
| 2483 | removed for migration to new_lsdb. |
| 2484 | |
| 2485 | * ospf_lsa.c (ospf_summary_lsa_install), |
| 2486 | (ospf_summary_asbr_lsa_install), (ospf_maxage_lsa_remover), |
| 2487 | (ospf_lsa_maxage_walker), (ospf_lsa_lookup), |
| 2488 | (ospf_lsa_lookup_by_id): Use new_lsdb instead of ospf_lsdb. |
| 2489 | (count_lsa), (ospf_lsa_count_table), (ospf_lsa_count), |
| 2490 | (ospf_get_free_id_for_prefix): Funcitions removed. |
| 2491 | |
| 2492 | 2000-06-09 Gleb Natapov <gleb@nbase.co.il> |
| 2493 | |
| 2494 | * ospf_ism.c (ism_interface_down): Prevent some unneeded DR changes. |
| 2495 | |
| 2496 | * ospf_packet.c (ospf_db_desc_proc): Fix memory leak. |
| 2497 | (ospf_hello): Always copy router-ID when hello is received. |
| 2498 | |
| 2499 | 2000-06-08 Gleb Natapov <gleb@nbase.co.il> |
| 2500 | |
| 2501 | * ospf_lsa.h (struct ospf_lsa): Add member of pointer to struct |
| 2502 | ospf_area. |
| 2503 | |
| 2504 | 2000-06-08 Michael Rozhavsky <mike@nbase.co.il> |
| 2505 | |
| 2506 | * ospf_ase.c (ospf_asbr_route_same): New function added. |
| 2507 | This function makes sure external route calculation more |
| 2508 | precisely. |
| 2509 | |
| 2510 | 2000-06-07 Michael Rozhavsky <mike@nbase.co.il> |
| 2511 | |
| 2512 | * ospf_ism.c (ism_change_status): Use ospf_lsa_flush_area for |
| 2513 | network-LSA deletion instead of using ospf_lsdb_delete. |
| 2514 | Also cancel network-LSA origination timer. |
| 2515 | |
| 2516 | 2000-06-07 Levi Harper <lharper@kennedytech.com> |
| 2517 | |
| 2518 | * ospf_interface.c (ospf_if_down): Close read fd when an interface |
| 2519 | goes down. |
| 2520 | |
| 2521 | 2000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2522 | |
| 2523 | * ospf_asbr.c (ospf_external_info_lookup): Add explicit brace for |
| 2524 | avoid ambiguous else. |
| 2525 | |
| 2526 | * ospf_flood.c (ospf_external_info_check): Likewise. |
| 2527 | |
| 2528 | 2000-06-05 Toshiaki Takada <takada@zebra.org> |
| 2529 | |
| 2530 | * ospf_nsm.c (nsm_adj_ok): Fix bug of DR election. |
| 2531 | |
| 2532 | 2000-06-04 Toshiaki Takada <takada@zebra.org> |
| 2533 | |
| 2534 | * ospf_zebra.c (ospf_default_information_originate), |
| 2535 | (no_ospf_default_information_originate): New DEFUN added. |
| 2536 | |
| 2537 | 2000-06-03 Toshiaki Takada <takada@zebra.org> |
| 2538 | |
| 2539 | * ospf_lsa.h, ospf_asbr.h (external_info): Struct moved from |
| 2540 | ospf_lsa.h to ospf_asbr.h. |
| 2541 | |
| 2542 | * ospf_lsa.c, ospf_asbr.c (ospf_external_info_add), |
| 2543 | (ospf_external_info_delete): Function moved from ospf_lsa.c |
| 2544 | to ospf_asbr.c. |
| 2545 | |
| 2546 | 2000-06-03 Toshiaki Takada <takada@zebra.org> |
| 2547 | |
| 2548 | * ospf_flood.c (ospf_external_info_check): New function added. |
| 2549 | (ospf_process_self_orignated_lsa): Make sure to flush |
| 2550 | self-originated AS-external-LSA, when router reboot and no longer |
| 2551 | originate those AS-external-LSA. |
| 2552 | |
| 2553 | 2000-06-02 Toshiaki Takada <takada@zebra.org> |
| 2554 | |
| 2555 | * ospf_network.c (ospf_serv_sock): Remove SO_DONTROUTE |
| 2556 | socket option. |
| 2557 | |
| 2558 | * ospf_packet.c (ospf_write): Set MSG_DONTROUTE flag for |
| 2559 | unicast destination packets. |
| 2560 | |
| 2561 | 2000-06-02 Toshiaki Takada <takada@zebra.org> |
| 2562 | |
| 2563 | * ospf_lsdb.c (new_lsdb_delete): Delete entry from LSDB only when |
| 2564 | specified LSA matches. |
| 2565 | |
| 2566 | 2000-06-02 Gleb Natapov <gleb@nbase.co.il> |
| 2567 | |
| 2568 | * ospf_network.c (ospf_serv_sock): Set SO_DONTROUTE |
| 2569 | socket option. |
| 2570 | |
| 2571 | 2000-06-01 Akihiro Mizutani <mizutani@dml.com> |
| 2572 | |
| 2573 | * ospf_dump.c: Replace string `Debugging functions\n' with DEBUG_STR. |
| 2574 | Replace string `OSPF information\n' with OSPF_STR. |
| 2575 | |
| 2576 | 2000-06-01 Toshiaki Takada <takada@zebra.org> |
| 2577 | |
| 2578 | * ospf_lsdb.[ch]: Use new_lsdb struct for network-LSA instead of |
| 2579 | ospf_lsdb. |
| 2580 | |
| 2581 | 2000-06-01 Toshiaki Takada <takada@zebra.org> |
| 2582 | |
| 2583 | * ospf_dump.c (config_debug_ospf_packet), (config_debug_ospf_event), |
| 2584 | (config_debug_ospf_ism), (config_debug_ospf_nsm), |
| 2585 | (config_debug_ospf_lsa), (config_debug_ospf_zebra), |
| 2586 | (term_debug_ospf_packet), (term_debug_ospf_event), |
| 2587 | (term_debug_ospf_ism), (term_debug_ospf_nsm), |
| 2588 | (term_debug_ospf_lsa), (term_debug_ospf_zebra): Repalce debug_ospf_* |
| 2589 | variable to use for debug option flags. |
| 2590 | |
| 2591 | (debug_ospf_packet), (debug_ospf_ism), (debug_ospf_nsm), |
| 2592 | (debug_ospf_lsa), (debug_ospf_zebra): Set {config,term}_debug_* |
| 2593 | flags when vty->node is CONFIG_NODE, otherwise set only term_debug_* |
| 2594 | flags. |
| 2595 | |
| 2596 | * ospf_dump.h (CONF_DEBUG_PACKET_ON), (CONF_DEBUG_PACKET_OFF), |
| 2597 | (TERM_DEBUG_PACKET_ON), (TERM_DEBUG_PACKET_OFF), |
| 2598 | (CONF_DEBUG_ON), (CONF_DEBUG_OFF), (IS_CONF_DEBUG_OSPF_PACKET), |
| 2599 | (IS_CONF_DEBUG_OSPF): New Macro added. |
| 2600 | |
| 2601 | 2000-05-31 Toshiaki Takada <takada@zebra.org> |
| 2602 | |
| 2603 | * ospfd.c (clear_ip_ospf_neighbor): New DEFUN added. |
| 2604 | Currently this command is used for only debugging. |
| 2605 | |
| 2606 | * ospf_nsm.c (nsm_change_status): Make sure thread cancellation |
| 2607 | for network-LSA when DR has no full neighbors. |
| 2608 | |
| 2609 | * ospf_nsm.c (ospf_db_summary_clear): New function added. |
| 2610 | |
| 2611 | 2000-05-30 Toshiaki Takada <takada@zebra.org> |
| 2612 | |
| 2613 | * ospf_lsdb.c (new_lsdb_insert): LSAs are always freed by |
| 2614 | maxage_lsa_remover when LSA is replaced. |
| 2615 | |
| 2616 | 2000-05-25 Gleb Natapov <gleb@nbase.co.il> |
| 2617 | |
| 2618 | * ospf_flood.c (ospf_ls_retransmit_delete_nbr_all): Add argument |
| 2619 | `struct ospf_area' to remove LSA from Link State retransmission list |
| 2620 | of neighbor from only one Area. |
| 2621 | |
| 2622 | 2000-05-24 Michael Rozhavsky <mike@nbase.co.il> |
| 2623 | |
| 2624 | * ospf_lsdb.c (ospf_lsdb_add): Preserve flags field when |
| 2625 | overriting old LSA with new LSA. |
| 2626 | |
| 2627 | 2000-05-24 Gleb Natapov <gleb@nbase.co.il> |
| 2628 | |
| 2629 | * ospf_lsa.c (ospf_router_lsa_body_set): Fix bug of router-LSA |
| 2630 | size calculation. |
| 2631 | |
| 2632 | 2000-05-22 Michael Rozhavsky <mike@nbase.co.il> |
| 2633 | |
| 2634 | * ospf_route.c (ospf_intra_add_stub): |
| 2635 | * ospf_spf.h (struct vertex): Use u_int32_t for distance (cost) |
| 2636 | value instead of u_int16_t. |
| 2637 | |
| 2638 | 2000-05-22 Axel Gerlach <agerlach@datus.datus.com> |
| 2639 | |
| 2640 | * ospf_ia.c (ospf_ia_network_route): Fix bug of Inter-area route |
| 2641 | equal cost path calculation. |
| 2642 | |
| 2643 | 2000-05-21 Toshiaki Takada <takada@zebra.org> |
| 2644 | |
| 2645 | * ospf_ase.c (ospf_ase_calculate_route_delete): New function added. |
| 2646 | Make sure, when rotuer route is deleted, related external routes |
| 2647 | are also deleted. |
| 2648 | |
| 2649 | 2000-05-20 Toshiaki Takada <takada@zebra.org> |
| 2650 | |
| 2651 | * ospfd.c (ospf_interface_down): Make sure interface flag is disable |
| 2652 | and set fd to -1. |
| 2653 | |
| 2654 | 2000-05-16 Toshiaki Takada <takada@zebra.org> |
| 2655 | |
| 2656 | * ospf_asbr.c (ospf_asbr_should_announce), (ospf_asbr_route_remove): |
| 2657 | Functions removed. |
| 2658 | |
| 2659 | * ospfd.h (EXTERNAL_INFO): Macro added. |
| 2660 | Substitute `ospf_top->external_info[type]' with it. |
| 2661 | |
| 2662 | 2000-05-16 Toshiaki Takada <takada@zebra.org> |
| 2663 | |
| 2664 | * ospf_lsa.c (ospf_rtrs_external_remove): New function added. |
| 2665 | |
| 2666 | 2000-05-14 Gleb Natapov <gleb@nbase.co.il> |
| 2667 | |
| 2668 | * ospf_flood.c (ospf_ls_retransmit_delete_nbr_all) |
| 2669 | * ospf_lsdb.c (new_lsdb_insert) |
| 2670 | * ospf_packet.c (ospf_ls_ack): Fix database synchonization problem. |
| 2671 | |
| 2672 | 2000-05-14 Gleb Natapov <gleb@nbase.co.il> |
| 2673 | |
| 2674 | * ospf_lsa.h (tv_adjust), (tv_ceil), (tv_floor), (int2tv), |
| 2675 | (tv_add), (tv_sub), (tv_cmp): Prototype definition added. |
| 2676 | |
| 2677 | * ospf_nsm.h (ospf_db_summary_delete_all): Prototype definition added. |
| 2678 | |
| 2679 | 2000-05-13 Toshiaki Takada <takada@zebra.org> |
| 2680 | |
| 2681 | * ospf_lsa.[ch] (ospf_lsa): struct timestamp type is changed from |
| 2682 | time_t to struct timeval. |
| 2683 | (tv_adjust), (tv_ceil), (tv_floor), (int2tv), (tv_add), |
| 2684 | (tv_sub), (tv_cmp): timeval utillity functions added. |
| 2685 | |
| 2686 | 2000-05-12 Toshiaki Takada <takada@zebra.org> |
| 2687 | |
| 2688 | * ospf_lsa.[ch] (ospf_schedule_update_router_lsas): Delete function. |
| 2689 | Change to use macro OSPF_LSA_UPDATE_TIMER instead of using |
| 2690 | this function. |
| 2691 | router-LSA refresh timer related stuff is re-organized. |
| 2692 | |
| 2693 | 2000-05-10 Gleb Natapov <gleb@nbase.co.il> |
| 2694 | |
| 2695 | * ospf_interface.c (ospf_vl_set_params): |
| 2696 | * ospf_packet.c (ospf_check_network_mask): |
| 2697 | * ospf_spf.[ch] (ospf_spf_next): |
| 2698 | Remove field address from `struct vertex', and search for peer |
| 2699 | address of virtual link in function `ospf_vl_set_params' instead. |
| 2700 | |
| 2701 | 2000-05-10 Gleb Natapov <gleb@nbase.co.il> |
| 2702 | |
| 2703 | * ospf_packet.c (ospf_ls_upd): Fix some memory leak related LSA. |
| 2704 | |
| 2705 | 2000-05-08 Thomas Molkenbur <tmo@datus.com> |
| 2706 | |
| 2707 | * ospf_packet.c (ospf_packet_dup): Replace ospf_steram_copy() |
| 2708 | with ospf_stream_dup() to fix memory leak. |
| 2709 | |
| 2710 | 2000-05-08 Michael Rozhavsky <mike@nbase.co.il> |
| 2711 | |
| 2712 | * ospf_flood.c (ospf_flood_through_area): Fix the problem of |
| 2713 | LSA update without DROther. |
| 2714 | |
| 2715 | 2000-05-04 Gleb Natapov <gleb@nbase.co.il> |
| 2716 | |
| 2717 | * ospf_spf.c (ospf_vertex_free): Fix memory leak of SPF calculation. |
| 2718 | |
| 2719 | 2000-05-03 Toshiaki Takada <takada@zebra.org> |
| 2720 | |
| 2721 | * ospf_neighbor.c (ospf_db_summary_add): Use new_lsdb struct |
| 2722 | instead linked-list. |
| 2723 | (ospf_db_summary_count), (ospf_db_summary_isempty): |
| 2724 | New function added. |
| 2725 | |
| 2726 | * ospf_lsa.c (ospf_rotuer_lsa): Re-arrange and divide functions. |
| 2727 | |
| 2728 | 2000-05-02 Gleb Natapov <gleb@nbase.co.il> |
| 2729 | |
| 2730 | * ospf_lsdb.c (new_lsdb_cleanup): Fix memory leak. When LSDB are |
| 2731 | not needed any more, then free them. |
| 2732 | |
| 2733 | 2000-05-02 Toshiaki Takada <takada@zebra.org> |
| 2734 | |
| 2735 | * ospfd.c (timers_spf), (no_timers_spf): New defun added. |
| 2736 | SPF calculation timers related stuff is rearranged. |
| 2737 | |
| 2738 | * ospf_spf.c (ospf_spf_calculate_timer_add): Function removed. |
| 2739 | SPF timer is scheduled by SPF calculation delay and holdtime |
| 2740 | configuration variable. |
| 2741 | |
| 2742 | * ospf_lsa.c (ospf_external_lsa_nexthop_get): Set AS-external-LSA's |
| 2743 | forwarding address when nexthop learned by other protocols is |
| 2744 | in the OSPF domain. |
| 2745 | |
| 2746 | * ospf_zebra.c (ospf_redistribute_source_metric_type), |
| 2747 | (ospf_redistribute_source_type_metric): Re-arrange DEFUNs and |
| 2748 | ALIASes. |
| 2749 | |
| 2750 | 2000-05-01 Toshiaki Takada <takada@zebra.org> |
| 2751 | |
| 2752 | * ospf_flood.c (ospf_ls_retransmit_count), |
| 2753 | (ospf_ls_retransmit_isempty): New function added. |
| 2754 | |
| 2755 | (ospf_ls_retransmit_add), (ospf_ls_retransmit_delete), |
| 2756 | (ospf_ls_retransmit_clear), (ospf_ls_retransmit_lookup), |
| 2757 | (ospf_ls_retransmit_delete_all), (ospf_ls_retransmit_delete_nbr_all), |
| 2758 | (ospf_ls_retransmit_add_nbr_all): Replace these functions to use |
| 2759 | new_lsdb. |
| 2760 | |
| 2761 | 2000-04-29 Toshiaki Takada <takada@zebra.org> |
| 2762 | |
| 2763 | * ospfd.c (no_network_area): Add check Area-ID whether specified |
| 2764 | Area-ID with prefix matches config. |
| 2765 | |
| 2766 | 2000-04-27 Toshiaki Takada <takada@zebra.org> |
| 2767 | |
| 2768 | * ospf_lsa.c (ospf_maxage_lsa_remover): Fix problem of |
| 2769 | remaining withdrawn routes on zebra. |
| 2770 | |
| 2771 | 2000-04-25 Michael Rozhavsky <mike@nbase.co.il> |
| 2772 | |
| 2773 | * ospf_nsm.c (nsm_kill_nbr), (nsm_ll_down), (nsm_change_status), |
| 2774 | (ospf_nsm_event): Fix network-LSA re-origination problem. |
| 2775 | |
| 2776 | 2000-04-24 Toshiaki Takada <takada@zebra.org> |
| 2777 | |
| 2778 | * ospf_nsm.c (ospf_db_desc_timer): Fix bug of segmentation fault |
| 2779 | with DD retransmission. |
| 2780 | |
| 2781 | * ospf_nsm.c (nsm_kill_nbr): Fix bug of re-origination when |
| 2782 | a neighbor disappears. |
| 2783 | |
| 2784 | 2000-04-23 Michael Rozhavsky <mike@nbase.co.il> |
| 2785 | |
| 2786 | * ospf_abr.c (ospf_abr_announce_network_to_area): Fix bug of |
| 2787 | summary-LSAs reorigination. Correctly copy OSPF_LSA_APPROVED |
| 2788 | flag to new LSA. when summary-LSA is reoriginatd. |
| 2789 | |
| 2790 | * ospf_flood.c (ospf_flood_through_area): Fix bug of flooding |
| 2791 | procedure. Change the condition of interface selection. |
| 2792 | |
| 2793 | 2000-04-21 Toshiaki Takada <takada@zebra.org> |
| 2794 | |
| 2795 | * ospf_lsa.c (ospf_refresher_register_lsa): Fix bug of refresh never |
| 2796 | occurs. |
| 2797 | |
| 2798 | * ospfd.c (show_ip_ospf_neighbor_id): New defun added. |
| 2799 | `show ip ospf neighbor' related commands are re-arranged. |
| 2800 | |
| 2801 | 2000-04-20 Toshiaki Takada <takada@zebra.org> |
| 2802 | |
| 2803 | * ospf_dump.c (debug_ospf_zebra): New defun added. |
| 2804 | Suppress zebra related debug information. |
| 2805 | |
| 2806 | 2000-04-19 Toshiaki Takada <takada@zebra.org> |
| 2807 | |
| 2808 | * ospf_zebra.c (ospf_distribute_list_update_timer), |
| 2809 | (ospf_distribute_list_update), (ospf_filter_update): |
| 2810 | New function added. Re-organize `distribute-list' router ospf |
| 2811 | command. |
| 2812 | |
| 2813 | 2000-04-13 Michael Rozhavsky <mike@nbase.co.il> |
| 2814 | |
| 2815 | * ospf_packet.c (ospf_make_ls_upd): Add check for MAX_AGE. |
| 2816 | |
| 2817 | 2000-04-14 Michael Rozhavsky <mike@nbase.co.il> |
| 2818 | |
| 2819 | * ospf_packet.c (ospf_make_ls_upd): Increment LS age by configured |
| 2820 | interface transmit_delay. |
| 2821 | |
| 2822 | 2000-04-14 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in> |
| 2823 | |
| 2824 | * ospf_interface.c (ip_ospf_cost), (no_ip_ospf_cost): |
| 2825 | Add to schedule router_lsa origination when the interface cost changes. |
| 2826 | |
| 2827 | 2000-04-12 Toshiaki Takada <takada@zebra.org> |
| 2828 | |
| 2829 | * ospf_lsa.c (ospf_refresher_register_lsa), |
| 2830 | (ospf_refresher_unregister_lsa): Fix bug of core dumped. |
| 2831 | |
| 2832 | * ospfd.c (no_router_ospf): Fix bug of core dumped. |
| 2833 | |
| 2834 | 2000-03-29 Toshiaki Takada <takada@zebra.org> |
| 2835 | |
| 2836 | * ospf_nsm.c (nsm_oneway_received): Fix bug of MS flag unset. |
| 2837 | |
| 2838 | 2000-03-29 Michael Rozhavsky <mike@nbase.co.il> |
| 2839 | |
| 2840 | * ospf_lsa.c (ospf_network_lsa): |
| 2841 | * ospf_nsm.c (ospf_nsm_event): Fix bug of Network-LSA originated |
| 2842 | in stub network. |
| 2843 | |
| 2844 | 2000-03-28 Toshiaki Takada <takada@zebra.org> |
| 2845 | |
| 2846 | * ospf_nsm.c (nsm_bad_ls_req), (nsm_seq_number_mismatch), |
| 2847 | (nsm_oneway_received): Fix bug of NSM state flapping between |
| 2848 | ExStart and Exchange. |
| 2849 | |
| 2850 | 2000-03-28 Toshiaki Takada <takada@zebra.org> |
| 2851 | |
| 2852 | * ospf_packet.h (strcut ospf_header): Fix the size of ospf_header, |
| 2853 | change u_int8_t to u_char. |
| 2854 | |
| 2855 | 2000-03-27 Toshiaki Takada <takada@zebra.org> |
| 2856 | |
| 2857 | * ospf_lsa.c (ospf_lsa_checksum): Take care of BIGENDIAN architecture. |
| 2858 | |
| 2859 | 2000-03-27 Toshiaki Takada <takada@zebra.org> |
| 2860 | |
| 2861 | * ospfd.c (ospf_interface_run): Make sure Address family matches. |
| 2862 | |
| 2863 | 2000-03-26 Love <lha@s3.kth.se> |
| 2864 | |
| 2865 | * ospf_packet.c (ospf_write): Chack result of sendto(). |
| 2866 | |
| 2867 | 2000-03-26 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in> |
| 2868 | |
| 2869 | * ospf_nsm.c (nsm_oneway_received): Fix bug of 1-WayReceived in NSM. |
| 2870 | |
| 2871 | 2000-03-23 Libor Pechacek <farco@clnet.cz> |
| 2872 | |
| 2873 | * ospf_lsa.c (ospf_network_lsa) |
| 2874 | * ospf_lsdb.c (new_lsdb_insert): Fix bug of accessing to |
| 2875 | unallocated memory. |
| 2876 | |
| 2877 | 2000-03-23 Toshiaki Takada <takada@zebra.org> |
| 2878 | |
| 2879 | * ospfd.c (ospf_config_write): Fix bug of duplicate line for |
| 2880 | `area A.B.C.D authentication'. |
| 2881 | |
| 2882 | 2000-03-22 Toshiaki Takada <takada@zebra.org> |
| 2883 | |
| 2884 | * ospf_debug.c (debug_ospf_lsa), (no_debug_ospf_lsa): Defun added. |
| 2885 | Suppress all zlog related to LSAs with this config option. |
| 2886 | |
| 2887 | 2000-03-21 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2888 | |
| 2889 | * ospf_nsm.c (ospf_nsm_event): Add check for NSM_InactivityTimer. |
| 2890 | |
| 2891 | 2000-03-21 Toshiaki Takada <takada@zebra.org> |
| 2892 | |
| 2893 | * ospf_packet.c (ospf_ls_upd_timer), (ospf_ls_req): |
| 2894 | Fix bug of memory leak about linklist. |
| 2895 | |
| 2896 | * ospf_flood.c (ospf_flood_through_area): Likewise. |
| 2897 | |
| 2898 | 2000-03-18 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in> |
| 2899 | |
| 2900 | * ospf_flood.c (ospf_ls_retransmit_lookup): Add checksum comparison |
| 2901 | to identify LSA uniquely. This fix routes lost. |
| 2902 | |
| 2903 | 2000-03-18 Toshiaki Takada <takada@zebra.org> |
| 2904 | |
| 2905 | * ospf_ase.c (ospf_find_asbr_route): Add sanity check with router |
| 2906 | routing table. |
| 2907 | |
| 2908 | 2000-03-17 Alex Zinin <zinin@amt.ru> |
| 2909 | |
| 2910 | * ospf_spf.[ch]: Bug fix. |
| 2911 | The 2nd stage of Dijkstra could consider one vertex |
| 2912 | more than once if there is more than one link |
| 2913 | between the routers, thus adding extra CPU overhead |
| 2914 | and extra next-hops. |
| 2915 | Fixed. |
| 2916 | |
| 2917 | 2000-03-15 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in> |
| 2918 | |
| 2919 | * ospf_nsm.c (nsm_inactivity_timer): Changed to call nsm_kill_nbr(). |
| 2920 | |
| 2921 | 2000-03-14 Toshiaki Takada <takada@zebra.org> |
| 2922 | |
| 2923 | * ospf_route.c (ospf_route_copy_nexthops): Fix bug of memory leak of |
| 2924 | ospf_path. Actually ignore merging ospf_route with completely same |
| 2925 | paths. |
| 2926 | |
| 2927 | 2000-03-12 Toshiaki Takada <takada@zebra.org> |
| 2928 | |
| 2929 | * ospf_lsa.c (show_as_external_lsa_detail): fix bug of |
| 2930 | external route tag byte order. |
| 2931 | |
| 2932 | 2000-03-11 Toshiaki Takada <takada@zebra.org> |
| 2933 | |
| 2934 | * ospf_lsdb.c (ospf_lsdb_insert): New function added. |
| 2935 | |
| 2936 | 2000-03-09 Toshiaki Takada <takada@zebra.org> |
| 2937 | |
| 2938 | * ospf_lsa.c (ospf_external_lsa_install), |
| 2939 | (ospf_lsa_lookup), (show_ip_ospf_database_all), |
| 2940 | (show_ip_ospf_database_self_originate): Use struct new_lsdb for |
| 2941 | LSDB of AS-external-LSAs instead of ospf_lsdb. |
| 2942 | |
| 2943 | * ospf_lsa.c (ospf_lsa_unique_id): New function added. |
| 2944 | Use for assigning Unique Link State ID instead of |
| 2945 | ospf_get_free_id_for_prefix(). |
| 2946 | |
| 2947 | 2000-03-09 Toshiaki Takada <takada@zebra.org> |
| 2948 | |
| 2949 | * ospf_ase.c (ospf_ase_calculate_timer): Fix bug of segmentation |
| 2950 | fault reported by George Bonser <george@siteROCK.com>. |
| 2951 | |
| 2952 | 2000-03-07 Libor Pechacek <farco@clnet.cz> |
| 2953 | |
| 2954 | * ospfd.c (ospf_interface_down): Fix bug of segmentation fault. |
| 2955 | |
| 2956 | 2000-03-06 Toshiaki Takada <takada@zebra.org> |
| 2957 | |
| 2958 | * ospf_route.c (ospf_route_cmp): Change meaning of return values. |
| 2959 | |
| 2960 | 2000-03-02 Alex Zinin <zinin@amt.ru> |
| 2961 | * ospfd.h, ospf_ia.h |
| 2962 | New Shortcut ABR code. Now area's flag can be configured |
| 2963 | with Default, Enable, and Disable values. |
| 2964 | More info will be in the new ver of I-D soon (see IETF web). |
| 2965 | |
| 2966 | 2000-02-25 Toshiaki Takada <takada@zebra.org> |
| 2967 | |
| 2968 | * ospf_lsa.c (ospf_lsa_header_set), (ospf_external_lsa_body_set), |
| 2969 | (osfp_external_lsa_originate), (ospf_external_lsa_queue), |
| 2970 | (ospf_external_lsa_originate_from_queue): New function added. |
| 2971 | (ospf_external_lsa): Function removed. |
| 2972 | |
| 2973 | * ospf_zebra.c (ospf_zebra_read_ipv4): Originate AS-external-LSA |
| 2974 | when listen a route from Zebra, instead creating external route. |
| 2975 | |
| 2976 | * ospf_asbr.c (ospf_asbr_route_add_flood_lsa), |
| 2977 | (ospf_asbr_route_add_queue_lsa), |
| 2978 | (ospf_asbr_route_install_lsa), (ospf_asbr_route_add): |
| 2979 | Functions removed. |
| 2980 | |
| 2981 | * ospf_ase.c (process_ase_lsa): Function will not be used. |
| 2982 | (ospf_ase_calculate), (ospf_ase_calculate_route_add), |
| 2983 | (ospf_ase_calculate_new_route), (ospf_ase_caluculate_asbr_route): |
| 2984 | process_ase_lsa () is separated to these functions. |
| 2985 | |
| 2986 | OSPF AS-external-LSA origination is whole re-organized. |
| 2987 | |
| 2988 | 2000-02-18 Toshiaki Takada <takada@zebra.org> |
| 2989 | |
| 2990 | * ospf_packet.c (ospf_ls_upd): Fix bug of OSPF LSA memory leak. |
| 2991 | |
| 2992 | * ospf_asbr.c (ospf_asbr_route_add_flood_lsa), |
| 2993 | (ospf_asbr_route_add_queue_lsa): Fix bug of OSPF external route |
| 2994 | memory leak. |
| 2995 | |
| 2996 | 2000-02-12 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 2997 | |
| 2998 | * ospf_asbr.c (ospf_asbr_route_install_lsa): Re-calculate LSA |
| 2999 | checksum after change Advertised Router field. |
| 3000 | |
| 3001 | 2000-02-09 Toshiaki Takada <takada@zebra.org> |
| 3002 | |
| 3003 | * ospf_asbr.c (ospf_external_route_lookup): Add new function. |
| 3004 | |
| 3005 | 2000-02-08 Toshiaki Takada <takada@zebra.org> |
| 3006 | |
| 3007 | * ospfd.c (ospf_router_id_get), (ospf_router_id_update), |
| 3008 | (ospf_router_id_update_timer): Router ID decision algorithm is changed. |
| 3009 | Router ID is chosen from all of eligible interface addresses even if |
| 3010 | it is not enable to OSPF. |
| 3011 | |
| 3012 | 2000-02-08 Toshiaki Takada <takada@zebra.org> |
| 3013 | |
| 3014 | * ospf_asbr.c (ospf_asbr_route_add): Function divided to |
| 3015 | ospf_asbr_route_add_flood_lsa, ospf_asbr_route_add_queue_lsa and |
| 3016 | ospf_asbr_route_install_lsa. If Router-ID is not set, then LSA is |
| 3017 | waited to install to LSDB. |
| 3018 | `0.0.0.0 adv_router' AS-external-LSA origination bug was fixed. |
| 3019 | |
| 3020 | 2000-02-01 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in> |
| 3021 | |
| 3022 | * ospf_flood.c (ospf_ls_retransmit_lookup): Compare LS seqnum |
| 3023 | in the ACK before deleting. |
| 3024 | |
| 3025 | * ospf_packet.c (ospf_hello): Reset the flags after a shutdown |
| 3026 | and no shutdown of the interface. |
| 3027 | |
| 3028 | 2000-01-31 Toshiaki Takada <takada@zebra.org> |
| 3029 | |
| 3030 | * ospf_packet.c (ospf_ls_req): Send multiple Link State Update |
| 3031 | packets respond to a Link State Request packet. |
| 3032 | |
| 3033 | * ospfd.c (show_ip_ospf_neighbor_detail_sub): Show thread state. |
| 3034 | |
| 3035 | * ospf_interface.c (ospf_vl_new): Crash when backbone area |
| 3036 | is not configured and set virtual-link to no-backbone area, |
| 3037 | bug fixed. |
| 3038 | |
| 3039 | 2000-01-30 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3040 | |
| 3041 | * ospf_neighbor.h (struct ospf_neighbor): Add pointer to last send |
| 3042 | LS Request LSA. |
| 3043 | |
| 3044 | * ospf_packet.c (ospf_ls_upd): Comment out LS request list |
| 3045 | treatment. That should be done in OSPF flooding procedure. |
| 3046 | |
| 3047 | * ospf_flood.c (ospf_flood_through_area): Enclose |
| 3048 | ospf_check_nbr_loding inside if-else close. |
| 3049 | |
| 3050 | 2000-01-31 Toshiaki Takada <takada@zebra.org> |
| 3051 | |
| 3052 | * ospf_packet.c (ospf_make_ls_upd): Fix bug of #LSAs counting. |
| 3053 | |
| 3054 | 2000-01-29 Toshiaki Takada <takada@zebra.org> |
| 3055 | |
| 3056 | * ospf_packet.c (ospf_make_md5_digest): Fix bug of md5 authentication. |
| 3057 | |
| 3058 | 2000-01-28 Toshiaki Takada <takada@zebra.org> |
| 3059 | |
| 3060 | * ospfd.c (show_ip_ospf): Show Number of ASE-LSAs. |
| 3061 | |
| 3062 | 2000-01-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3063 | |
| 3064 | * ospf_packet.c (ospf_make_db_desc): Don't use rm_list for |
| 3065 | removing LSA from nbr->db_summary. |
| 3066 | |
| 3067 | 2000-01-27 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in> |
| 3068 | |
| 3069 | * ospf_packet.c (ospf_ls_upd_send): Set AllSPFRouters to |
| 3070 | destination when the link is point-to-point. |
| 3071 | (ospf_ls_ack_send_delayed): Likewise. |
| 3072 | |
| 3073 | 2000-01-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3074 | |
| 3075 | * ospf_flood.c (ospf_ls_request_delete_all): Fix bug of next |
| 3076 | pointer lookup after the node is freed. |
| 3077 | |
| 3078 | 2000-01-26 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3079 | |
| 3080 | * ospf_asbr.c (ospf_asbr_route_add): Instead of scanning all AS |
| 3081 | external route, use ospf_top->external_self. |
| 3082 | |
| 3083 | 2000-01-27 Toshiaki Takada <takada@zebra.org> |
| 3084 | |
| 3085 | * ospf_lsa.c (ospf_forward_address_get): New function added. |
| 3086 | |
| 3087 | * ospf_asbr.c (ospf_asbr_check_lsas): Originate AS-external-LSA |
| 3088 | only when it should be replaced. |
| 3089 | |
| 3090 | 2000-01-25 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3091 | |
| 3092 | * ospf_flood.c (ospf_ls_retransmit_clear): Delete list node. |
| 3093 | |
| 3094 | * ospf_lsa.c (ospf_lsa_free): Reduce logging message using |
| 3095 | ospf_zlog value. |
| 3096 | |
| 3097 | * ospf_ism.c (ism_change_status): Fix bug of DR -> non DR status |
| 3098 | change. Self originated LSA is freed but not deleted from lsdb. |
| 3099 | |
| 3100 | 2000-01-24 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3101 | |
| 3102 | * ospf_ism.c (ism_interface_down): Don't use router_id for |
| 3103 | detecting self neighbor structure. Instead of that compare |
| 3104 | pointer itself. |
| 3105 | |
| 3106 | * ospf_neighbor.c (ospf_nbr_free): Cancel all timer when neighbor |
| 3107 | is deleted. |
| 3108 | (ospf_nbr_free): Free last send packet. |
| 3109 | |
| 3110 | * ospf_neighbor.h (struct ospf_neighbor): Remove host strucutre. |
| 3111 | Instead of that src is introduced. |
| 3112 | |
| 3113 | * ospf_nsm.h: Enclose macro defenition with do {} while (0). |
| 3114 | |
| 3115 | 2000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3116 | |
| 3117 | * ospfd.c: Change part of passive interface implementation. For |
| 3118 | passive interface just disabling sending/receiving Hello on the |
| 3119 | interface. |
| 3120 | |
| 3121 | 2000-01-16 Kai Bankett <kai.bankett@vew-telnet.net> |
| 3122 | |
| 3123 | * ospf_interface.h (OSPF_IF_PASSIVE): Add passive flag. |
| 3124 | * ospf_interface.c (ospf_if_lookup_by_name): Add new function. |
| 3125 | * ospf_lsa.c (ospf_router_lsa): Skip passive interface. |
| 3126 | * ospfd.c (passive_interface): New command passive-interface is |
| 3127 | added. |
| 3128 | (ospf_config_write): Print passive interface. |
| 3129 | |
| 3130 | 2000-01-15 Toshiaki Takada <takada@zebra.org> |
| 3131 | |
| 3132 | * ospf_interface.h (crypt_key): New struct added to store |
| 3133 | multiple cryptographic autheitication keys. |
| 3134 | (ospf_interface): struct changed. |
| 3135 | |
| 3136 | * ospf_interface.c: ospf_crypt_key_new, ospf_crypt_key_add, |
| 3137 | ospf_crypt_key_lookup, ospf_crypt_key_delete: new functions added. |
| 3138 | |
| 3139 | * ospf_packet.c (ip_ospf_message_digest_key): Changed to store |
| 3140 | multiple cryptographic authentication keys. |
| 3141 | |
| 3142 | 2000-01-14 Toshiaki Takada <takada@zebra.org> |
| 3143 | |
| 3144 | * ospf_interface.c: DEFUN (if_ospf_*) commands changed name to |
| 3145 | ip_ospf_* (). |
| 3146 | Old notation `ospf *' still remains backward compatibility. |
| 3147 | |
| 3148 | 1999-12-29 Alex Zinin <zinin@amt.ru> |
| 3149 | * ospf_lsa.c: ospf_lsa_more_recent() bug fix |
| 3150 | * ospf_nsm.c, ospf_packet.c: remove nbr data struct when |
| 3151 | int goes down, also check DD flags correctly (bug fix) |
| 3152 | |
| 3153 | 1999-12-28 Alex Zinin <zinin@amt.ru> |
| 3154 | * "redistribute <source> metric-type (1|2) metric <XXX>" added |
| 3155 | |
| 3156 | 1999-12-23 Alex Zinin <zinin@amt.ru> |
| 3157 | * added RFC1583Compatibility flag |
| 3158 | * added dynamic interface up/down functionality |
| 3159 | |
| 3160 | 1999-11-19 Toshiaki Takada <takada@zebra.org> |
| 3161 | |
| 3162 | * ospf_neighbor.h (struct ospf_neighbor): Add member state_change |
| 3163 | for NSM state change statistics. |
| 3164 | |
| 3165 | 1999-11-19 Toshiaki Takada <takada@zebra.org> |
| 3166 | |
| 3167 | * ospfd.c (show_ip_ospf_neighbor_detail), |
| 3168 | (show_ip_ospf_neighbor_int_detail): DEFUN Added. |
| 3169 | |
| 3170 | 1999-11-14 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3171 | |
| 3172 | * ospf_asbr.c (ospf_asbr_check_lsas): Add check of |
| 3173 | lsa->refresh_list. |
| 3174 | |
| 3175 | 1999-11-11 Toshiaki Takada <takada@zebra.org> |
| 3176 | |
| 3177 | * ospf_ia.[ch] (OSPF_EXAMINE_SUMMARIES_ALL): Macro added. |
| 3178 | This macro is expanded to ospf_examine_summaries () |
| 3179 | for SUMMARY_LSA and SUMMARY_LSA_ASBR. |
| 3180 | (OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL): Macro added. |
| 3181 | This macro is expanded to ospf_examine_transit_summaries () |
| 3182 | for SUMMARY_LSA and SUMMARY_LSA_ASBR. |
| 3183 | |
| 3184 | 1999-11-11 Toshiaki Takada <takada@zebra.org> |
| 3185 | |
| 3186 | * ospf_lsa.[ch] (ospf_find_self_summary_lsa_by_prefix): Changed to |
| 3187 | macro OSPF_SUMMARY_LSA_SELF_FIND_BY_PREFIX. |
| 3188 | (ospf_find_self_summary_asbr_lsa_by_prefix): Changed to |
| 3189 | macro OSPF_SUMMARY_ASBR_LSA_SELF_FIND_BY_PREFIX. |
| 3190 | (ospf_find_self_external_lsa_by_prefix): Changed to |
| 3191 | macro OSPF_EXTERNAL_LSA_SELF_FIND_BY_PREFIX. |
| 3192 | |
| 3193 | 1999-11-11 Toshiaki Takada <takada@zebra.org> |
| 3194 | |
| 3195 | * ospfd.c (ospf_abr_type): ospf_abr_type_cisco, ospf_abr_type_ibm, |
| 3196 | ospf_abr_type_shortcut and ospf_abr_type_standard DEFUNs are |
| 3197 | combined. |
| 3198 | * ospfd.c (no_ospf_abr_type): no_ospf_abr_type_cisco, |
| 3199 | no_ospf_abr_type_ibm and no_ospf_abr_type_shortcut DEFUNS are |
| 3200 | combined. |
| 3201 | |
| 3202 | 1999-11-10 Toshiaki Takada <takada@zebra.org> |
| 3203 | |
| 3204 | * ospf_route.c (ospf_lookup_int_by_prefix): Move function to |
| 3205 | ospf_interface.c and change name to ospf_if_lookup_by_prefix (). |
| 3206 | |
| 3207 | 1999-11-01 Alex Zinin <zinin@amt.ru> |
| 3208 | * ospf_packet.c |
| 3209 | some correction to LSU processing |
| 3210 | |
| 3211 | * ospf_lsa.c ospfd.h |
| 3212 | randomize initial LSA refreshment interval |
| 3213 | and limit the size of LSA-group to 10 |
| 3214 | to let randomization work more effectively. |
| 3215 | |
| 3216 | 1999-10-31 Alex Zinin <zinin@amt.ru> |
| 3217 | * ospf_interface.c |
| 3218 | cancel t_network_lsa_self |
| 3219 | when freeing int structure |
| 3220 | |
| 3221 | * ospf_abr.c ospf_asbr.c ospf_flood.c ospf_lsa.c |
| 3222 | ospf_lsa.h ospf_lsdb.h ospfd.c ospfd.h |
| 3223 | |
| 3224 | Summary and ASE LSA refreshment functions |
| 3225 | added---LSA refreshment is paced to 70 LSAs |
| 3226 | per sec to avoid link overflow. Refreshment events |
| 3227 | are further randomized within a 10 sec interval |
| 3228 | to avoid syncing. |
| 3229 | |
| 3230 | Also the sigfault of memcmp() in ospf_lsa_is_different() |
| 3231 | is fixed. |
| 3232 | |
| 3233 | 1999-10-30 Alex Zinin <zinin@amt.ru> |
| 3234 | * ospf_nsm.c |
| 3235 | Fix the bug where MAX_AGE LSAs |
| 3236 | are included into the DB summary. |
| 3237 | |
| 3238 | * ospf_interface.c |
| 3239 | allocate 2*MTU input buffer instead of just MTU |
| 3240 | for the cases when the other router mistakenly |
| 3241 | sends larger packets thus causing fragmentation, etc. |
| 3242 | |
| 3243 | * ospf_nsm.c |
| 3244 | in nsm_reset_nbr() lists should be freed |
| 3245 | not when they are empty. |
| 3246 | |
| 3247 | 1999-10-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3248 | |
| 3249 | * ospf_zebra.c (ospf_acl_hook): Move OSPF_IS_ASBR and OSPF_IS_ABR |
| 3250 | check inside of if (ospf_top). |
| 3251 | |
| 3252 | 1999-10-29 Alex Zinin <zinin@amt.ru> |
| 3253 | * ospf_lsa.c ospf_lsdb.c : |
| 3254 | add assertion in lsa and lsa->data alloc functions, |
| 3255 | as well as in lsdb_add for new->data |
| 3256 | |
| 3257 | * ospf_lsdb.c: free hash table correctly |
| 3258 | |
| 3259 | 1999-10-28 John Capo <jc@irbs.com> |
| 3260 | |
| 3261 | * ospf_packet.h (OSPF_PACKET_MAX): Correct MAX packet length |
| 3262 | calculation |
| 3263 | |
| 3264 | 1999-10-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3265 | |
| 3266 | * OSPF-TRAP-MIB.txt: New file added. Edited version of RFC1850. |
| 3267 | |
| 3268 | * OSPF-MIB.txt: New file added. Edited version of RFC1850. |
| 3269 | |
| 3270 | 1999-10-27 Alex Zinin <zinin@amt.ru> |
| 3271 | * ospfd, ospf_zebra, ospf_abr |
| 3272 | "area import-list" command is added. |
| 3273 | This command allows to filter the inter-area routes |
| 3274 | injected into an area. Access list hook function |
| 3275 | extended to invalidate area exp/imp lists. |
| 3276 | |
| 3277 | 1999-10-25 Yoshinobu Inoue <shin@nd.net.fujitsu.co.jp> |
| 3278 | |
| 3279 | * ospfd.c (ospf_interface_run): Enable to detect P2P network |
| 3280 | on an OSPF interface. |
| 3281 | |
| 3282 | 1999-10-19 Jordan Mendelson <jordy@wserv.com> |
| 3283 | |
| 3284 | * ospf_lsdb.c (ospf_lsdb_add): Fix bug of crash |
| 3285 | in ospf_ls_retransmit_lookup (). |
| 3286 | |
| 3287 | 1999-10-19 Vladimir B. Grebenschikov <vova@express.ru> |
| 3288 | |
| 3289 | * ospf_route.c: Workaround about installation of OSPF routes into |
| 3290 | the zebra daemon. Add checking of existance routes. Free |
| 3291 | ospf_top->old_table if it exists. |
| 3292 | |
| 3293 | 1999-10-15 Jordan Mendelson <jordy@wserv.com> |
| 3294 | |
| 3295 | * Add support for MD5 authentication. |
| 3296 | |
| 3297 | 1999-10-12 Alex Zinin <zinin@amt.ru> |
| 3298 | * ospfd.c, ospfd.h, ospf_abr.c: |
| 3299 | a new command "area export-list" was added, it allows |
| 3300 | the admin. to control which intra-area routes are |
| 3301 | announced to other areas by the ABR |
| 3302 | |
| 3303 | 1999-10-12 Alex Zinin <zinin@amt.ru> |
| 3304 | * ospf_asbr.c (ospf_asbr_check_lsas): Fix bug of coredump |
| 3305 | when "no redistribute" is used after a distribute list |
| 3306 | denying some networks was used |
| 3307 | |
| 3308 | 1999-10-05 Toshiaki Takada <takada@zebra.org> |
| 3309 | |
| 3310 | * ospf_route.c (ospf_path_dup): New function added. |
| 3311 | |
| 3312 | 1999-10-05 Toshiaki Takada <takada@zebra.org> |
| 3313 | |
| 3314 | * ospf_interface.[ch]: Some of VL related funciton name changed. |
| 3315 | |
| 3316 | 1999-09-27 Alex Zinin <zinin@amt.ru> |
| 3317 | |
| 3318 | * ospf_zebra.c: Distribute-list functionality added |
| 3319 | |
| 3320 | 1999-09-27 Toshiaki Takada <takada@zebra.org> |
| 3321 | |
| 3322 | * ospfd.c (show_ip_ospf): Fix bug of segmentation fault when no ospf |
| 3323 | instance exists. |
| 3324 | |
| 3325 | 1999-09-25 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3326 | |
| 3327 | * ospfd.c (ospf_interface_down): Fix bug of misusing nextnode() |
| 3328 | instead of node->next. Reported by Hiroki Ishibashi |
| 3329 | <ishibasi@dcd.abk.nec.co.jp>. |
| 3330 | |
| 3331 | * ospf_route.c (show_ip_ospf_route): Add check for ospf is enabled |
| 3332 | or not. |
| 3333 | |
| 3334 | 1999-09-23 Alex Zinin <zinin@amt.ru> |
| 3335 | |
| 3336 | * stub area support added |
| 3337 | |
| 3338 | 1999-09-23 Alex Zinin <zinin@amt.ru> |
| 3339 | |
| 3340 | * fwd_addr in ASE-LSAs is now set correctly |
| 3341 | * ASE routing changed to check the fwd_addr |
| 3342 | and skip the route if the addr points to one |
| 3343 | of our interfaces to avoid loops. |
| 3344 | |
| 3345 | 1999-09-22 Alex Zinin <zinin@amt.ru> |
| 3346 | |
| 3347 | * ospf_interface: |
| 3348 | ospf_vls_in_area() added, it returns |
| 3349 | the number of VLs configured through the area |
| 3350 | |
| 3351 | * ospf_interface.c ospf_lsa.c ospf_lsdb.c ospfd.c |
| 3352 | honor correct mem alloc |
| 3353 | |
| 3354 | 1999-09-22 Alex Zinin <zinin@amt.ru> |
| 3355 | |
| 3356 | * memory.[ch]: |
| 3357 | Some OSPF mem types added, |
| 3358 | plus more info in "show mem" |
| 3359 | |
| 3360 | 1999-09-21 Alex Zinin <zinin@amt.ru> |
| 3361 | |
| 3362 | * ospfd.c: |
| 3363 | "area range substitute" added. |
| 3364 | It can be used on NAT-enabled (IP-masquarade) |
| 3365 | routers to announce private networks |
| 3366 | from an area as public ones into the outside |
| 3367 | world (not in the RFC, btw :) |
| 3368 | |
| 3369 | 1999-09-21 Alex Zinin <zinin@amt.ru> |
| 3370 | |
| 3371 | * ospfd.c: |
| 3372 | "area range suppress" added. |
| 3373 | This command allows to instruct the router |
| 3374 | to be silent about specific ranges, i.e., |
| 3375 | it is a method of route filtering on area |
| 3376 | borders |
| 3377 | |
| 3378 | 1999-09-21 Alex Zinin <zinin@amt.ru> |
| 3379 | |
| 3380 | * ospfd.c VLs removed when "no network area" executed |
| 3381 | |
| 3382 | 1999-09-20 Alex Zinin <zinin@amt.ru> |
| 3383 | |
| 3384 | * ospf_ase.c bug fix for not-zero fwd_addr |
| 3385 | and directly connected routes. |
| 3386 | |
| 3387 | 1999-09-20 Yon Uriarte <yon@plannet.de> |
| 3388 | |
| 3389 | * ospf_packet.c (ospf_make_ls_req): Introduce delta value for |
| 3390 | checking the length of OSPF packet exceeds MTU or not. |
| 3391 | |
| 3392 | * ospf_lsa.c (ospf_lsa_different): Apply ntohs for checking |
| 3393 | l1->data->length. |
| 3394 | |
| 3395 | 1999-09-18 Alex Zinin <zinin@amt.ru> |
| 3396 | |
| 3397 | * ospf_lsa.c bug fix for ospf_network_lsa() to |
| 3398 | include itself into the RID list |
| 3399 | |
| 3400 | 1999-09-10 Alex Zinin <zinin@amt.ru> |
| 3401 | |
| 3402 | * Alternative ABR behaviors IBM/Cisco/Shortcut |
| 3403 | implemented |
| 3404 | |
| 3405 | 1999-09-10 Alex Zinin <zinin@amt.ru> |
| 3406 | |
| 3407 | * router and network-LSA origination |
| 3408 | changed to honor MinLSInterval |
| 3409 | |
| 3410 | 1999-09-08 Alex Zinin <zinin@amt.ru> |
| 3411 | |
| 3412 | * modified ABR behavior to honor VLs and transit |
| 3413 | areas |
| 3414 | |
| 3415 | 1999-09-07 Alex Zinin <zinin@amt.ru> |
| 3416 | |
| 3417 | * completed VL functionality |
| 3418 | |
| 3419 | 1999-09-06 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3420 | |
| 3421 | * ospf_asbr.c: New file. |
| 3422 | ospf_asbr.h: New file. |
| 3423 | |
| 3424 | * ospf_zebra.c (ospf_redistribute_connected): Add redistribute |
| 3425 | related stuff. |
| 3426 | |
| 3427 | 1999-09-05 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3428 | |
| 3429 | * ospfd.h (OSPF_FLAG_VIRTUAL_LINK): Change OSPF_FLAG_VEND to |
| 3430 | OSPF_FLAG_VIRTUAL_LINK for comprehensiveness. |
| 3431 | |
| 3432 | 1999-09-03 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3433 | |
| 3434 | * ospf_spf.c (ospf_spf_register): Change name from |
| 3435 | ospf_spf_route_add() to ospf_spf_register(). |
| 3436 | Include "ospfd/ospf_abr.h" for ospf_abr_task() prototype. |
| 3437 | |
| 3438 | 1999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3439 | |
| 3440 | * ospf_lsa.c (ospf_external_lsa_install): Change to update |
| 3441 | lsa->data rather than install new one, when same id lsa is already |
| 3442 | installed. |
| 3443 | |
| 3444 | 1999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3445 | |
| 3446 | * ospf_lsa.c (ospf_router_lsa_install): Return lsa value. |
| 3447 | (ospf_network_lsa_install): Likewise. |
| 3448 | (ospf_summary_lsa_install): Likewise. |
| 3449 | (ospf_summary_asbr_lsa_install): Likewise. |
| 3450 | (ospf_external_lsa_install): Likewise. |
| 3451 | |
| 3452 | * ospf_spf.c (ospf_spf_calculate): Comment out debug function |
| 3453 | ospf_rtrs_print(). |
| 3454 | |
| 3455 | 1999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3456 | |
| 3457 | * ospf_spf.c (ospf_rtrs_free): Add ospf_spf_calculate() for |
| 3458 | freeing rtrs. |
| 3459 | |
| 3460 | 1999-08-31 Toshiaki Takada <takada@zebra.org> |
| 3461 | |
| 3462 | * ospf_lsa.c (show_ip_ospf_database_summary), |
| 3463 | (show_ip_ospf_database_summary_asbr), |
| 3464 | (show_ip_ospf_database_external): New function added. |
| 3465 | `show ip ospf database summary', |
| 3466 | `show ip ospf database asbr-summary' |
| 3467 | `show ip ospf database external' command can be used. |
| 3468 | |
| 3469 | * ospf_lsa.c (ospf_lsa_count_table): New function added. |
| 3470 | (show_ip_ospf_database_all): show nothing if a type of LSA |
| 3471 | does not exist. |
| 3472 | |
| 3473 | 1999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3474 | |
| 3475 | * ospf_lsa.c (ospf_maxage_lsa_remover): Preserve next pointer when |
| 3476 | the node is deleted. |
| 3477 | |
| 3478 | 1999-08-31 Toshiaki Takada <takada@zebra.org> |
| 3479 | |
| 3480 | * ospf_flood.c (ospf_ls_retransmit_lookup): change to return |
| 3481 | struct ospf_lsa *. |
| 3482 | (ospf_ls_request_new), (ospf_ls_request_free), |
| 3483 | (ospf_ls_request_add), (ospf_ls_request_delete), |
| 3484 | (ospf_ls_request_delete_all), (ospf_ls_request_lookup): |
| 3485 | New function added. |
| 3486 | |
| 3487 | * ospf_packet.c (ospf_ls_upd_send_lsa): New function added. |
| 3488 | |
| 3489 | * ospf_lsa.h (LS_AGE): Slightly change macro definition. |
| 3490 | |
| 3491 | * ospf_lsa.c (ospf_lsa_more_recent), (ospf_lsa_diffrent): |
| 3492 | Use LS_AGE macro. |
| 3493 | |
| 3494 | 1999-08-30 Alex Zinin <zinin@amt.ru> |
| 3495 | |
| 3496 | * ospfd.c |
| 3497 | fix a bug with area range config write |
| 3498 | added "show ip ospf" command, it will be enhanced later on |
| 3499 | |
| 3500 | 1999-08-30 Alex Zinin <zinin@amt.ru> |
| 3501 | |
| 3502 | * ospf_lsa.c |
| 3503 | updated ospf_router_lsa() to honor flags (B-bit) |
| 3504 | |
| 3505 | 1999-08-30 Alex Zinin <zinin@amt.ru> |
| 3506 | |
| 3507 | * ospf_abr.c |
| 3508 | wrote major functions implementing ABR activity |
| 3509 | |
| 3510 | 1999-08-30 Alex Zinin <zinin@amt.ru> |
| 3511 | |
| 3512 | * ospf_ia.c ospf_route.c ospf_route.h |
| 3513 | fixed the bug with ospf_route.origin field. |
| 3514 | Now it holds pointer to lsa_header |
| 3515 | |
| 3516 | 1999-08-30 Alex Zinin <zinin@amt.ru> |
| 3517 | |
| 3518 | * ospf_flood.c ospf_flood.h: |
| 3519 | transformed ospf_flood_if_select into ospf_flood_through_area() |
| 3520 | added new ospf_flood_if_select() and ospf_flood_through_as() |
| 3521 | |
| 3522 | 1999-08-30 Toshiaki Takada <takada@zebra.org> |
| 3523 | |
| 3524 | * ospf_flood.[ch]: New file added. |
| 3525 | |
| 3526 | * ospf_packet.c (ospf_lsa_flooding), |
| 3527 | (ospf_lsa_flooding_select_if): functions move to ospf_flood.c |
| 3528 | |
| 3529 | * ospf_neighbor.c (ospf_put_lsa_on_retransm_list), |
| 3530 | (ospf_remove_lsa_from_retransm_list), |
| 3531 | (ospf_nbr_remove_all_lsas_from_retransm_list), |
| 3532 | (ospf_lsa_remove_from_ls_retransmit): |
| 3533 | (ospf_lsa_retransmit): functions move to |
| 3534 | ospf_flood.c, and change function's name: |
| 3535 | |
| 3536 | ospf_put_lsa_on_retransm_list () |
| 3537 | -> ospf_ls_retransmit_add () |
| 3538 | ospf_remove_lsa_from_retransm_list () |
| 3539 | -> ospf_ls_retransmit_delete () |
| 3540 | ospf_nbr_remove_all_lsas_from_retransm_list () |
| 3541 | -> ospf_ls_retransmit_clear () |
| 3542 | ospf_lsa_remove_from_ls_retransmit () |
| 3543 | -> ospf_ls_retransmit_delete_nbr_all () |
| 3544 | ospf_lsa_retransmit () |
| 3545 | -> ospf_ls_retransmit_add_nbr_all () |
| 3546 | |
| 3547 | * ospf_lsa.c (ospf_lsa_lookup_from_list): function move to |
| 3548 | ospf_flood.c, and change name to ospf_ls_retransmit_lookup (). |
| 3549 | |
| 3550 | 1999-08-30 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3551 | |
| 3552 | * ospf_neighbor.c (ospf_nbr_lookup_by_addr): Use |
| 3553 | route_node_lookup() instead of route_node_get(). |
| 3554 | |
| 3555 | * ospf_packet.c (ospf_ls_upd): Temporary comment out (6) check. |
| 3556 | |
| 3557 | 1999-08-30 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3558 | |
| 3559 | * ospf_route.c (ospf_lookup_int_by_prefix): Add check of |
| 3560 | oi->address. |
| 3561 | |
| 3562 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3563 | * ospf_lsa.c |
| 3564 | MaxAge LSA deletion functions added. |
| 3565 | |
| 3566 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3567 | * ospf_neighbor.c |
| 3568 | ospf_nbr_lookup_by_addr(): added route_unlock_node() |
| 3569 | when function returns NULL if (rn->info == NULL) |
| 3570 | |
| 3571 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3572 | * ospfd.c |
| 3573 | added a hack for area range deletion |
| 3574 | |
| 3575 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3576 | * ospf_lsa.h |
| 3577 | included lsdb field into struct ospf_lsa, to find |
| 3578 | LSDB easier when removing MaxAge LSAs. |
| 3579 | |
| 3580 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3581 | * ospf_lsa.c ospf_neighbor.c ospf_nsm.c |
| 3582 | ospf_packet.c changed to honor new retransmit list |
| 3583 | management functions |
| 3584 | |
| 3585 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3586 | * ospf_neighbor.c , .h added new retransmit list functions. |
| 3587 | |
| 3588 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3589 | * Makefile.in |
| 3590 | added ospf_ase, ospf_abr, ospf_ia |
| 3591 | |
| 3592 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3593 | * ospf_spf.c: |
| 3594 | - changed ospf_next_hop_calculation() to include interface |
| 3595 | and nexthop addr for directly connected routers---more informative |
| 3596 | and solves problem with route installation into the kernel |
| 3597 | - changed ospf_nexthop_out_if_addr() to support routers, not only |
| 3598 | transit networks |
| 3599 | - added ospf_process_stubs(); |
| 3600 | |
| 3601 | 1999-08-29 Alex Zinin <zinin@amt.ru> |
| 3602 | * ospf_lsa.c: |
| 3603 | - changed ospf_router_lsa() to provide correct links |
| 3604 | for p-t-p interfaces; |
| 3605 | - changed ospf_summary_lsa_install() to support table |
| 3606 | of self-originated summary-LSAs; |
| 3607 | - added ospf_summary_asbr_lsa_install() and ospf_external_lsa_install() |
| 3608 | - changed ospf_lsa_install() accordingly |
| 3609 | - changed show_ip_ospf_database_router_links() to support p-t-p |
| 3610 | |
| 3611 | 1999-08-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3612 | |
| 3613 | * ospf_packet.c (ospf_make_db_desc): Only master can clear more |
| 3614 | flag. |
| 3615 | |
| 3616 | 1999-08-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3617 | |
| 3618 | * ospf_packet.c (ospf_read): Add check of IP src address. |
| 3619 | |
| 3620 | 1999-08-28 Alex Zinin <zinin@amt.ru> |
| 3621 | * ospf_neighbor.h |
| 3622 | added ospf_nbr_lookup_by_routerid() |
| 3623 | |
| 3624 | 1999-08-28 Alex Zinin <zinin@amt.ru> |
| 3625 | * ospfd.h |
| 3626 | added ABR/ASBR flag definitions and fields; |
| 3627 | added iflist field to area structure; |
| 3628 | summary_lsa_self and summary_lsa_asbr_self are changed |
| 3629 | to be route tables; |
| 3630 | added ranges field---configured area ranges; |
| 3631 | A separate Routers RT added; |
| 3632 | area range config commands and config write added |
| 3633 | |
| 3634 | |
| 3635 | 1999-08-28 Alex Zinin <zinin@amt.ru> |
| 3636 | * ospf_route.c : |
| 3637 | ospf_route_free()--added code to free the list of paths; |
| 3638 | The following functions added: |
| 3639 | ospf_intra_add_router(); |
| 3640 | ospf_intra_add_transit(); |
| 3641 | ospf_intra_add_stub(); |
| 3642 | the last function uses new ospf_int_lookup_by_prefix(); |
| 3643 | show_ip_ospf_route_cmd()--changed to support new RT structure; |
| 3644 | added ospf_cmp_routes()--general route comparision function; |
| 3645 | added ospf_route_copy_nexthops() and ospf_route_copy_nexthops_from_vertex() |
| 3646 | they are used in ASE and IA routing; |
| 3647 | added ospf_subst_route() and ospf_add_route(); |
| 3648 | |
| 3649 | 1999-08-28 Alex Zinin <zinin@amt.ru> |
| 3650 | * ospf_route.h : |
| 3651 | changed struct ospf_path to include output interface, |
| 3652 | changed struct ospf_route to support IA and ASE routing. |
| 3653 | added prototypes of the function used in IA and ASE modules. |
| 3654 | |
| 3655 | 1999-08-28 Alex Zinin <zinin@amt.ru> |
| 3656 | * ospf_lsa.h ospf_lsa.c : |
| 3657 | added ospf_my_lsa(), an interface independent version of |
| 3658 | ospf_lsa_is_self_originated(), it will be used in ASE and IA-routing. |
| 3659 | |
| 3660 | 1999-08-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3661 | |
| 3662 | * ospf_interface.c (interface_config_write): Add check for |
| 3663 | oi->nbr_self. |
| 3664 | |
| 3665 | 1999-08-25 Toshiaki Takada <takada@zebra.org> |
| 3666 | |
| 3667 | * ospf_lsa.c (ospf_lsa_dup): New function added. |
| 3668 | |
| 3669 | * ospf_packet.c (ospf_write), (ospf_read): Print send/recv |
| 3670 | interface in debug message. |
| 3671 | |
| 3672 | 1999-08-25 Toshiaki Takada <takada@zebra.org> |
| 3673 | |
| 3674 | * ospf_packet.c (ospf_ls_ack_send): The name is changed from |
| 3675 | `ospf_ls_ack_send'. |
| 3676 | (ospf_ls_ack_send_delayed) (ospf_ls_ack_timer): New function added. |
| 3677 | Delayed Link State Acknowledgment is scheduled by timer. |
| 3678 | |
| 3679 | 1999-08-25 Alex Zinin <zinin@amt.ru> |
| 3680 | |
| 3681 | * ospf_lsa.c (ospf_router_lsa): Incorrectly included link to |
| 3682 | a stub network instead of link to a transit network into |
| 3683 | originated router-LSA, bug fixed. |
| 3684 | |
| 3685 | 1999-08-24 Toshiaki Takada <takada@zebra.org> |
| 3686 | |
| 3687 | * ospfd.c (ospf_update_router_id): New function added. |
| 3688 | |
| 3689 | * ospf_network.c (ospf_write): Create new socket per transmission. |
| 3690 | And select outgoing interface whether dst is unicast or multicast. |
| 3691 | |
| 3692 | * ospf_packet.c: LSA flooding will work. |
| 3693 | |
| 3694 | 1999-08-24 VOP <vop@unity.net> |
| 3695 | |
| 3696 | * ospf_route.c: Include "sockunion.h" |
| 3697 | |
| 3698 | 1999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3699 | |
| 3700 | * ospf_network.c (ospf_serv_sock_init): Enclose |
| 3701 | IPTOS_PREC_INTERNETCONTROL setting with #ifdef for OS which does |
| 3702 | not have the definition. |
| 3703 | |
| 3704 | 1999-08-23 Toshiaki Takada <takada@zebra.org> |
| 3705 | |
| 3706 | * ospf_packet.c: Fix bug of DD processing. |
| 3707 | |
| 3708 | 1999-08-18 Toshiaki Takada <takada@zebra.org> |
| 3709 | |
| 3710 | * ospf_lsa.c (show_ip_ospf_database): Show actual `LS age'. |
| 3711 | |
| 3712 | 1999-08-17 Toshiaki Takada <takada@zebra.org> |
| 3713 | |
| 3714 | * ospf_lsa.h (OSPF_MAX_LSA): The value of OSPF_MAX_LSA is |
| 3715 | corrected. The bug of `mes_lookup' is fixed. |
| 3716 | This had been reported by Poul-Henning Kamp <phk@freebsd.org>. |
| 3717 | |
| 3718 | * ospf_lsa.c (ospf_router_lsa_install): The name is changed from |
| 3719 | `ospf_add_router_lsa'. |
| 3720 | (ospf_network_lsa_install): The name is changed from |
| 3721 | `ospf_add_network_lsa'. |
| 3722 | |
| 3723 | * ospf_interface.h (ospf_interface): Add member `nbr_self'. |
| 3724 | |
| 3725 | * ospf_interface.c (ospf_if_is_enable): New function added. |
| 3726 | |
| 3727 | 1999-08-16 Toshiaki Takada <takada@zebra.org> |
| 3728 | |
| 3729 | * ospf_lsa.h (struct lsa_header): The name is changed from |
| 3730 | `struct ospf_lsa'. |
| 3731 | (struct ospf_lsa): New struct added to control each LSA's aging |
| 3732 | and timers. |
| 3733 | |
| 3734 | * ospf_lsa.c (ospf_lsa_data_free): The name is change from |
| 3735 | `ospf_lsa_free'. |
| 3736 | (ospf_lsa_data_new), (ospf_lsa_new), (ospf_lsa_free), |
| 3737 | (ospf_lsa_different), (ospf_lsa_install): New function added. |
| 3738 | |
| 3739 | * ospf_packet.c (ospf_ls_upd_list_lsa): New function added. |
| 3740 | |
| 3741 | 1999-08-12 Toshiaki Takada <takada@zebra.org> |
| 3742 | |
| 3743 | * ospf_nsm.c (nsm_reset_nbr): New function added. |
| 3744 | KillNbr and LLDown neighbor event call this function. |
| 3745 | |
| 3746 | 1999-08-10 Toshiaki Takada <takada@zebra.org> |
| 3747 | |
| 3748 | * ospf_packet.c (ospf_ls_retransmit) |
| 3749 | (ospf_ls_upd_timer): New function added. |
| 3750 | Set retransmission timer for Link State Update. |
| 3751 | |
| 3752 | 1999-07-29 Toshiaki Takada <takada@zebra.org> |
| 3753 | |
| 3754 | * ospf_ism.c (ospf_dr_election): Fix bug of DR election. |
| 3755 | |
| 3756 | 1999-07-28 Toshiaki Takada <takada@zebra.org> |
| 3757 | |
| 3758 | * ospf_network.c (ospf_serv_sock_init): Set IP precedence field |
| 3759 | with IPTOS_PREC_INTERNET_CONTROL. |
| 3760 | |
| 3761 | * ospf_nsm.c (nsm_change_status): Schedule NeighborChange event |
| 3762 | if NSM status change. |
| 3763 | |
| 3764 | * ospf_packet.c (ospf_make_hello): Never include a neighbor in |
| 3765 | Hello packet, when the neighbor goes down. |
| 3766 | |
| 3767 | 1999-07-26 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3768 | |
| 3769 | * Makefile.am (noinst_HEADERS): Add ospf_route.h. |
| 3770 | |
| 3771 | * ospf_route.c (show_ip_ospf_route): Add `show ip ospf route' |
| 3772 | command. |
| 3773 | |
| 3774 | 1999-07-25 Toshiaki Takada <takada@zebra.org> |
| 3775 | |
| 3776 | * ospf_lsa.c (ospf_router_lsa): Fix bug of LS sequence number |
| 3777 | assignement. |
| 3778 | |
| 3779 | 1999-07-25 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3780 | |
| 3781 | * ospf_route.c (ospf_route_table_free): New function added. |
| 3782 | |
| 3783 | * ospf_spf.c (ospf_spf_next): Free vertex w when cw's and w's |
| 3784 | distance is same. |
| 3785 | |
| 3786 | * ospfd.h (struct ospf): Add old_table. |
| 3787 | |
| 3788 | * ospf_main.c (sighup): Call of log_rotate () removed. |
| 3789 | |
| 3790 | * ospf_lsa.c (ospf_lsa_is_self_originated): Fix bug of checking |
| 3791 | area->lsa as self LSA. This should be area->lsa_self. |
| 3792 | |
| 3793 | 1999-07-24 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3794 | |
| 3795 | * ospf_zebra.c (ospf_zebra_add): ospf_zebra_add |
| 3796 | (),ospf_zebra_delete () added. |
| 3797 | |
| 3798 | * ospf_spf.c (ospf_spf_calculate): Call ospf_intra_route_add (). |
| 3799 | |
| 3800 | 1999-07-24 Toshiaki Takada <takada@zebra.org> |
| 3801 | |
| 3802 | * ospf_lsa.c: Change LS sequence number treatment. |
| 3803 | (ospf_lsa_is_self_originated): New function added. |
| 3804 | (show_ip_ospf_database_self_originated): New DEFUN added. |
| 3805 | |
| 3806 | 1999-07-23 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3807 | |
| 3808 | * ospf_interface.c (ospf_if_lookup_by_addr): Add loopback check. |
| 3809 | |
| 3810 | 1999-07-22 Toshiaki Takada <takada@zebra.org> |
| 3811 | |
| 3812 | * ospf_spf.c (ospf_nexthop_new), (ospf_nexthop_free), |
| 3813 | (ospf_nexthop_dup): function added. |
| 3814 | (ospf_nexthop_calculation): function changed. |
| 3815 | |
| 3816 | * ospf_interface.c (ospf_if_lookup_by_addr): function added. |
| 3817 | |
| 3818 | 1999-07-21 Toshiaki Takada <takada@zebra.org> |
| 3819 | |
| 3820 | * ospf_spf.c (ospf_spf_closest_vertex): function removed. |
| 3821 | |
| 3822 | 1999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3823 | |
| 3824 | * ospf_spf.c (ospf_spf_next): Apply ntohs for fetching metric. |
| 3825 | |
| 3826 | 1999-07-21 Toshiaki Takada <takada@zebra.org> |
| 3827 | |
| 3828 | * ospf_neighbor.c (ospf_nbr_lookup_by_router_id): fundtion removed. |
| 3829 | |
| 3830 | * ospf_lsa.c (show_ip_ospf_database_router): describe each |
| 3831 | connected link. |
| 3832 | |
| 3833 | 1999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3834 | |
| 3835 | * ospf_spf.c (ospf_spf_next): V is router LSA or network LSA so |
| 3836 | change behavior according to LSA type. |
| 3837 | (ospf_lsa_has_link): Link check function is added. |
| 3838 | |
| 3839 | 1999-07-20 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3840 | |
| 3841 | * ospf_spf.c (ospf_spf_calculate_schedule): Add new function for |
| 3842 | SPF calcultion schedule addtition. |
| 3843 | (ospf_spf_calculate_timer_add): Rough 30 sec interval SPF calc |
| 3844 | timer is added. |
| 3845 | (ospf_spf_next_router): Delete ospf_spf_next_network (). |
| 3846 | |
| 3847 | * ospf_lsa.c (show_ip_ospf_database_all): Network-LSA display |
| 3848 | header typo correction. Display of router LSA's #link added. |
| 3849 | |
| 3850 | 1999-07-19 Toshiaki Takada <takada@zebra.org> |
| 3851 | |
| 3852 | * ospf_packet.c (ospf_check_network_mask): Added new function for |
| 3853 | receiving Raw IP packet on an appropriate interface. |
| 3854 | |
| 3855 | 1999-07-16 Toshiaki Takada <takada@zebra.org> |
| 3856 | |
| 3857 | * ospfd.c (ospf_router_id): new DEFUN added. |
| 3858 | |
| 3859 | 1999-07-15 Toshiaki Takada <takada@zebra.org> |
| 3860 | |
| 3861 | * ospf_spf.c (ospf_spf_init), (ospf_spf_free), |
| 3862 | (ospf_spf_has_vertex), (ospf_vertex_lookup), |
| 3863 | (ospf_spf_next_router), (ospf_spf_next_network), |
| 3864 | (ospf_spf_closest_vertex), (ospf_spf_calculate): |
| 3865 | function added. |
| 3866 | |
| 3867 | 1999-07-13 Toshiaki Takada <takada@zebra.org> |
| 3868 | |
| 3869 | * ospf_ism.c: fix bug of DR Election. |
| 3870 | |
| 3871 | * ospf_nsm.c: fix bug of adjacency forming. |
| 3872 | |
| 3873 | 1999-07-05 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3874 | |
| 3875 | * ospfd.c (ospf_init): Change to use install_default. |
| 3876 | |
| 3877 | 1999-07-01 Rick Payne <rickp@rossfell.co.uk> |
| 3878 | |
| 3879 | * ospf_zebra.c (zebra_init): Install standard commands to |
| 3880 | ZEBRA_NODE. |
| 3881 | |
| 3882 | 1999-06-30 Toshiaki Takada <takada@zebra.org> |
| 3883 | |
| 3884 | * ospf_dump.c: Whole debug command is improved. |
| 3885 | (ISM|NSM) (events|status|timers) debug option added. |
| 3886 | (show_debugging_ospf): new DEFUN added. |
| 3887 | |
| 3888 | 1999-06-30 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3889 | |
| 3890 | * ospf_lsa.c (ospf_lsa_lookup_from_list): Change !IPV4_ADDR_CMP to |
| 3891 | IPV4_ADDR_SAME. |
| 3892 | |
| 3893 | 1999-06-29 Toshiaki Takada <takada@zebra.org> |
| 3894 | |
| 3895 | * ospf_dump.c (ospf_summary_lsa_dump): Add summary-LSA dump routine. |
| 3896 | (ospf_as_external_lsa_dump): Add AS-external-LSA dump routine. |
| 3897 | |
| 3898 | * ospf_nsm.c (nsm_twoway_received): fix condtion of adjacnet. |
| 3899 | |
| 3900 | * ospf_ism.c (ospf_dr_election): fix DR Election. |
| 3901 | |
| 3902 | * ospf_dump.c (ospf_nbr_state_message): fix `show ip ospf neighbor' |
| 3903 | command's state. |
| 3904 | |
| 3905 | 1999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3906 | |
| 3907 | * ospf_dump.c (ospf_router_lsa_dump): Add router-LSA dump routine. |
| 3908 | |
| 3909 | 1999-06-28 Toshiaki Takada <takada@zebra.org> |
| 3910 | |
| 3911 | * ospf_lsa.c (show_ip_ospf_database_network): fix bug of |
| 3912 | `show ip ospf database network' command output. |
| 3913 | |
| 3914 | * ospf_nsm.c (nsm_inactivity_timer): Clear list of Link State |
| 3915 | Retransmission, Database Summary and Link State Request. |
| 3916 | |
| 3917 | * ospf_packet.c (ospf_ls_req_timer): New function added. |
| 3918 | Set Link State Request retransmission timer. |
| 3919 | |
| 3920 | 1999-06-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3921 | |
| 3922 | * ospf_main.c (main): Change default output from ZLOG_SYSLOG to |
| 3923 | ZLOG_STDOUT. |
| 3924 | |
| 3925 | * ospfd.c (ospf_init): Register show_ip_ospf_interface_cmd and |
| 3926 | show_ip_ospf_neighbor_cmd to VIEW_NODE. |
| 3927 | |
| 3928 | * ospf_lsa.c (ospf_lsa_init): Register show_ip_ospf_database_cmd |
| 3929 | and show_ip_ospf_database_type_cmd to VIEW_NODE. |
| 3930 | |
| 3931 | 1999-06-25 Toshiaki Takada <takada@zebra.org> |
| 3932 | |
| 3933 | * ospf_packet.c: fix bug of DD making. |
| 3934 | fix bug of LS-Update reading. |
| 3935 | |
| 3936 | 1999-06-23 Toshiaki Takada <takada@zebra.org> |
| 3937 | |
| 3938 | * ospf_packet.c: All type of packets are changed to use |
| 3939 | fifo queue structure. |
| 3940 | (ospf_fill_header) function added. |
| 3941 | |
| 3942 | 1999-06-22 Toshiaki Takada <takada@zebra.org> |
| 3943 | |
| 3944 | * ospf_packet.c (ospf_packet_new): New function added to handle |
| 3945 | sending ospf packet by fifo queue structure. |
| 3946 | (ospf_packet_free), (ospf_fifo_new), (ospf_fifo_push), |
| 3947 | (ospf_fifo_pop), (ospf_fifo_head), (ospf_fifo_flush), |
| 3948 | (ospf_fifo_free): Likewise. |
| 3949 | |
| 3950 | 1999-06-21 Toshiaki Takada <takada@zebra.org> |
| 3951 | |
| 3952 | * ospf_nsm.c (ospf_db_desc_timer): function added. |
| 3953 | (nsm_timer_set) function added. |
| 3954 | * ospf_dump.c (ospf_option_dump): function added. |
| 3955 | * ospf_packet.c (ospf_ls_req) (ospf_make_ls_req): function added. |
| 3956 | |
| 3957 | 1999-06-20 Toshiaki Takada <takada@zebra.org> |
| 3958 | |
| 3959 | * ospf_lsa.c (ospf_lsa_more_recent): function added. |
| 3960 | * ospf_neighbor.h (struct ospf_neighbor): Change member ms_flag |
| 3961 | to dd_flags. |
| 3962 | |
| 3963 | 1999-06-19 Toshiaki Takada <takada@zebra.org> |
| 3964 | |
| 3965 | * ospf_lsa.c: DEFUN (show_ip_ospf_database) Added. |
| 3966 | * ospf_interface.c (if_ospf_cost), (if_ospf_dead_interval), |
| 3967 | (if_ospf_hello_interval), (if_ospf_priority), |
| 3968 | (if_ospf_retransmit_interval), (if_ospf_transmit_delay) |
| 3969 | argument changed from NUMBER to <range>. |
| 3970 | DEFUN (if_ospf_network_broadcast), |
| 3971 | DEFUN (if_ospf_network_non_broadcast), |
| 3972 | DEFUN (if_ospf_network_point_to_multipoint), |
| 3973 | DEFUN (if_ospf_network_point_to_point) functions are combined to |
| 3974 | DEFUN (if_ospf_network). |
| 3975 | |
| 3976 | 1999-06-18 Toshiaki Takada <takada@zebra.org> |
| 3977 | |
| 3978 | * ospf_lsa.c: ospf_add_router_lsa (), ospf_add_network_lsa (), |
| 3979 | ospf_lsa_lookup (), ospf_lsa_count () Added. |
| 3980 | |
| 3981 | 1999-06-15 Toshiaki Takada <takada@zebra.org> |
| 3982 | |
| 3983 | * DEFUN (ospf_debug_ism), DEFUN (ospf_debug_nsm), |
| 3984 | DEFUN (no_ospf_debug_ism), DEFUN (no_ospf_debug_nsm) Added. |
| 3985 | `debug ospf ism' command shows debug message. |
| 3986 | `debuf ospf nsm' command shows debug message. |
| 3987 | |
| 3988 | 1999-06-14 Toshiaki Takada <takada@zebra.org> |
| 3989 | |
| 3990 | * ospf_lsa.c: ospf_network_lsa () Added. |
| 3991 | ospf_lsa_checksum () Added. |
| 3992 | * DEFUN (ospf_debug_packet), DEFUN (no_ospf_debug_packet) Added. |
| 3993 | `debug ospf packet' command shows debug message. |
| 3994 | |
| 3995 | 1999-06-13 Toshiaki Takada <takada@zebra.org> |
| 3996 | |
| 3997 | * ospf_packet.h: Remove struct ospf_ls_req {}, ospf_ls_upd {}, |
| 3998 | ospf_ls_ack {}. |
| 3999 | |
| 4000 | 1999-06-11 Toshiaki Takada <takada@zebra.org> |
| 4001 | |
| 4002 | * ospf_dump.c: fix IP packet length treatment. |
| 4003 | |
| 4004 | 1999-06-10 Toshiaki Takada <takada@zebra.org> |
| 4005 | |
| 4006 | * ospf_ism.h: Add OSPF_ISM_EVENT_EXECUTE() Macro Added. |
| 4007 | * ospf_nsm.h: Add OSPF_NSM_EVENT_EXECUTE() Macro Added. |
| 4008 | |
| 4009 | * ospf_packet.c: ospf_db_desc (), ospf_db_desc_send () Added. |
| 4010 | ospf_make_hello (), ospf_make_db_desc () Added. |
| 4011 | ospf_db_desc_proc () Added.n |
| 4012 | |
| 4013 | * Database Description packet can be processed. |
| 4014 | |
| 4015 | 1999-06-08 Toshiaki Takada <takada@zebra.org> |
| 4016 | |
| 4017 | * ospf_lsa.c: New file. |
| 4018 | |
| 4019 | 1999-06-07 Toshiaki Takada <takada@zebra.org> |
| 4020 | |
| 4021 | * ospf_neighbor.c: ospf_fully_adjacent_count () Added. |
| 4022 | |
| 4023 | 1999-06-07 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4024 | |
| 4025 | * ospf_spf.[ch]: New file. |
| 4026 | |
| 4027 | 1999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4028 | |
| 4029 | * ospf_zebra.c: Changed to use lib/zclient.c routines. |
| 4030 | |
| 4031 | * ospf_zebra.h (zebra_start): Remove struct zebra. |
| 4032 | |
| 4033 | 1999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4034 | |
| 4035 | * ospfd.c (ospf_config_write): Add cast (unsigned long int) to |
| 4036 | ntohl for sprintf warning. |
| 4037 | |
| 4038 | 1999-05-19 Toshiaki Takada <takada@zebra.org> |
| 4039 | |
| 4040 | * ospf_ism.c (ospf_dr_election): Join AllDRouters Multicast group |
| 4041 | if interface state changes to DR or BDR. |
| 4042 | |
| 4043 | 1999-05-14 Stephen R. van den Berg <srb@cuci.nl> |
| 4044 | |
| 4045 | * ospf_main.c (signal_init): SIGTERM call sigint. |
| 4046 | (sigint): Logging more better message. |
| 4047 | |
| 4048 | 1999-05-12 Toshiaki Takada <takada@zebra.org> |
| 4049 | |
| 4050 | * ospfd.c: Fix bug of `no router ospf' statement, it will work. |
| 4051 | |
| 4052 | 1999-05-11 Toshiaki Takada <takada@zebra.org> |
| 4053 | |
| 4054 | * ospf_neighbor.c: ospf_nbr_free () Added. |
| 4055 | |
| 4056 | 1999-05-10 Toshiaki Takada <takada@zebra.org> |
| 4057 | |
| 4058 | * ospfd.h: struct ospf_area { }, struct ospf_network { } Changed. |
| 4059 | * Fix bug of `no network' statement, it will work. |
| 4060 | |
| 4061 | 1999-05-07 Toshiaki Takada <takada@zebra.org> |
| 4062 | |
| 4063 | * ospf_interface.c, ospf_zebra.c: Fix bug of last interface is not |
| 4064 | updated by ospf_if_update (). |
| 4065 | |
| 4066 | 1999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4067 | |
| 4068 | * Makefile.am (noinst_HEADERS): Add ospf_lsa.h for distribution. |
| 4069 | |
| 4070 | 1999-04-25 Toshiaki Takada <takada@zebra.org> |
| 4071 | |
| 4072 | * ospf_interface.c: DEFUN (no_if_ospf_cost), |
| 4073 | DEFUN (no_if_ospf_dead_interval), |
| 4074 | DEFUN (no_if_ospf_hello_interval), |
| 4075 | DEFUN (no_if_ospf_priority), |
| 4076 | DEFUN (no_if_ospf_retransmit_interval), |
| 4077 | DEFUN (no_if_ospf_transmit_delay) Added. |
| 4078 | |
| 4079 | interface_config_write () suppress showing interface |
| 4080 | default values. |
| 4081 | |
| 4082 | 1999-04-25 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4083 | |
| 4084 | * ospf_dump.c (ospf_timer_dump): If thread is NULL return "inactive". |
| 4085 | |
| 4086 | * ospfd.c (ospf_if_update): Fix bug of using ospf_area { } instead |
| 4087 | of ospf_network { }. So `router ospf' statement in ospfd.conf |
| 4088 | works again. |
| 4089 | (ospf_if_update): Call ospf_get_router_id for updating router ID. |
| 4090 | |
| 4091 | 1999-04-25 Toshiaki Takada <takada@zebra.org> |
| 4092 | |
| 4093 | * ospf_interface.c: DEFUN (if_ospf_network) deleted. |
| 4094 | DEFUN (if_ospf_network_broadcast), |
| 4095 | DEFUN (if_ospf_network_non_broadcast), |
| 4096 | DEFUN (if_ospf_network_point_to_multipoint), |
| 4097 | DEFUN (if_ospf_network_point_to_point), |
| 4098 | DEFUN (no_if_ospf_network) Added. |
| 4099 | |
| 4100 | 1999-04-23 Toshiaki Takada <takada@zebra.org> |
| 4101 | |
| 4102 | * ospfd.h: struct area { } changed to struct ospf_network { }. |
| 4103 | Add struct ospf_area { }. |
| 4104 | * ospfd.c: Add ospf_area_lookup_by_area_id (), ospf_network_new (), |
| 4105 | and ospf_network_free (). |
| 4106 | DEFUN (area_authentication), DEFUN (no_area_authentication) Added. |
| 4107 | |
| 4108 | 1999-04-22 Toshiaki Takada <takada@zebra.org> |
| 4109 | |
| 4110 | * ospf_lsa.h: New file. |
| 4111 | * ospf_packet.h: LSA related struct definition are moved to |
| 4112 | ospf_lsa.h. |
| 4113 | * ospf_packet.c: ospf_verify_header () Added. |
| 4114 | |
| 4115 | 1999-04-21 Toshiaki Takada <takada@zebra.org> |
| 4116 | |
| 4117 | * ospf_ism.c: ospf_elect_dr () and related function is changed. |
| 4118 | DR Election bug fixed. |
| 4119 | * ospf_dump.c: ospf_nbr_state_message (), ospf_timer_dump () Added. |
| 4120 | * ospfd.c: DEFUN (show_ip_ospf_neighbor) Added. |
| 4121 | |
| 4122 | 1999-04-19 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4123 | |
| 4124 | * ospf_main.c (main): access_list_init () is added for vty |
| 4125 | connection filtering. |
| 4126 | |
| 4127 | 1999-04-16 Toshiaki Takada <takada@zebra.org> |
| 4128 | |
| 4129 | * ospfd.c: DEFUN (show_ip_ospf_interface) Added. |
| 4130 | * ospf_neighbor.c: ospf_nbr_count () Added. |
| 4131 | |
| 4132 | 1999-04-15 Toshiaki Takada <takada@zebra.org> |
| 4133 | |
| 4134 | * ospfd.h: struct ospf { } Changed. |
| 4135 | * ospfd.c: ospf_lookup_by_process_id () Deleted. |
| 4136 | * ospf_ism.c: ospf_wait_timer () Added. WaitTimer will work. |
| 4137 | |
| 4138 | 1999-04-14 Toshiaki Takada <takada@zebra.org> |
| 4139 | |
| 4140 | * ospf_ism.c: ospf_elect_dr () Added. |
| 4141 | * ospf_network.c: ospf_if_ipmulticast () Added. |
| 4142 | |
| 4143 | 1999-04-11 Toshiaki Takada <takada@zebra.org> |
| 4144 | |
| 4145 | * ospf_interface.c: interface_config_write (), |
| 4146 | DEFUN (if_ip_ospf_cost), |
| 4147 | DEFUN (if_ip_ospf_dead_interval), |
| 4148 | DEFUN (if_ip_ospf_hello_interval), |
| 4149 | DEFUN (if_ip_ospf_priority), |
| 4150 | DEFUN (if_ip_ospf_retransmit_interval) and |
| 4151 | DEFUN (if_ip_ospf_transmit_delay) Added. |
| 4152 | |
| 4153 | 1999-04-08 Toshiaki Takada <takada@zebra.org> |
| 4154 | |
| 4155 | * ospf_dump.c: ospf_packet_db_desc_dump () Added. |
| 4156 | * ospf_neighbor.c: ospf_nbr_bidirectional () Added. |
| 4157 | * ospf_nsm.c: nsm_twoway_received () Added. |
| 4158 | |
| 4159 | 1999-04-02 Toshiaki Takada <takada@zebra.org> |
| 4160 | |
| 4161 | * ospf_neighbor.c: New file. |
| 4162 | * ospf_neighbor.h: New file. |
| 4163 | * ospf_nsm.c: New file. |
| 4164 | * ospf_nsm.h: New file. |
| 4165 | * ospf_packet.c: Add ospf_make_header (), ospf_hello () and |
| 4166 | ospf_hello_send (). Now OSPFd can receive Hello and send Hello. |
| 4167 | |
| 4168 | 1999-03-27 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4169 | |
| 4170 | * ospf_packet.c: Add ospf_recv_packet (). Now OSPF Hello can receive. |
| 4171 | |
| 4172 | 1999-03-19 Toshiaki Takada <takada@zebra.org> |
| 4173 | |
| 4174 | * ospf_packet.c: New file. |
| 4175 | * ospf_packet.h: New file. |
| 4176 | * ospf_network.c: New file. |
| 4177 | * ospf_network.h: New file. |
| 4178 | * ospfd.h: move OSPF message structure has moved to ospf_packet.h. |
| 4179 | |
| 4180 | 1999-03-17 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4181 | |
| 4182 | * ospf_zebra.c (ospf_zebra_get_interface): Fix for IPv6 interface |
| 4183 | address. |
| 4184 | |
| 4185 | * Makefile.am (install-sysconfDATA): Overwrite install-sysconfDATA |
| 4186 | for install ospfd.conf.sample as owner read only file. |
| 4187 | |
| 4188 | * ospf_main.c (usage): Change to use ZEBRA_BUG_ADDRESS. |
| 4189 | |
| 4190 | 1999-03-15 Toshiaki Takada <takada@zebra.org> |
| 4191 | |
| 4192 | * ospf_ism.c: New file. |
| 4193 | * ospf_ism.h: New file. |
| 4194 | * ospf_dump.c: New file. |
| 4195 | * ospf_dump.h: New file. |
| 4196 | |
| 4197 | * ospfd.h: Add (struct ospf), (struct config_network), |
| 4198 | (struct message) structure. |
| 4199 | |
| 4200 | * ospf_interface.c: Add ospf_if_match_network (). |
| 4201 | * ospf_interface.h (struct ospf_interface): Change struct members. |
| 4202 | |
| 4203 | * ospfd.c: ospf_lookup_by_process_id (), ospf_network_new (), |
| 4204 | DEFUN (network_area): Added. |
| 4205 | |
| 4206 | * ospfd.conf.sample: Change sample configuration. |
| 4207 | |
| 4208 | 1999-03-05 Toshiaki Takada <takada@zebra.org> |
| 4209 | |
| 4210 | * ospf_interface.c: New file. |
| 4211 | * ospf_interface.h: New file. |
| 4212 | * ospf_zebra.h: New file. |
| 4213 | * ospf_zebra.c: Add interface function for zebra daemon. |
| 4214 | * ospfd.c: New file. |
| 4215 | |
| 4216 | 1999-02-23 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4217 | |
| 4218 | * Move IPv6 codes and files to ospf6d directory. |
| 4219 | |
| 4220 | 1999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com> |
| 4221 | |
| 4222 | * syslog support added |
| 4223 | |
| 4224 | 1998-12-22 Toshiaki Takada <takada@zebra.org> |
| 4225 | |
| 4226 | * ospfd.h: New file. |
| 4227 | * ospf_lsa.h: New file. |
| 4228 | |
| 4229 | 1998-12-15 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 4230 | |
| 4231 | * Makefile.am: New file. |
| 4232 | * ospf_main.c: New file. |
| 4233 | |