]> git.proxmox.com Git - mirror_frr.git/blob - ChangeLog
2004-10-23 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / ChangeLog
1 2004-10-23 Paul Jakma <paul@dishone.st>
2
3 * configure.ac: bump version to 0.97.2, release imminent.
4
5 2004-10-22 Paul Jakma <paul@dishone.st>
6
7 * configure.ac: fix up enable help alignment slightly
8 Add --enable-gcc-ultra-verbose to set various gcc warnings which
9 should one day be fixed but are not serious problems or which
10 could be false-positives.
11
12 2004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
13
14 * lib, zebra, ripd, ospfd, bgpd: Support NULL connected destination
15 pointers properly everywhere. Fix point-to-point logic to
16 support links where a dedicated subnet has been assigned.
17 PtP links with /31 subnets should now work where supported by O/S.
18
19 2004-10-11 Paul Jakma <paul@dishone.st>
20
21 * bump version to 0.97.1, release imminent.
22
23 2004-10-07 Paul Jakma <paul@dishone.st>
24
25 * bump version to 0.97.0, release imminent.
26
27 2004-10-07 Greg Troxel <gdt@sunpal7.mit.edu>
28
29 * configure.ac: remove -Wpacked; 2.95.3 doesn't support it.
30
31 2004-10-05 Hasso Tepper <hasso at quagga.net>
32
33 * configure.ac: Removed -Wpadded. I don't have sooo much time that I
34 could care about padding ;).
35
36 2004-09-30 Paul Jakma <paul@dishone.st>
37
38 * Update default CFLAGS for gcc to keep Hasso busy.
39
40 2004-09-27 Paul Jakma <paul@dishone.st>
41
42 * update-autotools: libtoolize should copy files, rather than link.
43 the whole idea is that dist files should not need auto*, etc.
44 installed to be able to compile.
45
46 2004-09-13 Hasso Tepper <hasso at quagga.net>
47
48 * configure.ac: Disable isisd compiling by default.
49
50 2004-09-13 Paul Jakma <paul@dishone.st>
51
52 * configure.ac: capitalise the package name. autoconf lowercases
53 it for PACKAGE_TARNAME.
54
55 2004-09-13 Jose Luis Rubio <jrubio@dit.upm.es>
56 (at Technical University of Madrid as part of Euro6ix Project)
57
58 Enhanced Route Server functionality and Route-Maps:
59
60 * bgpd/bgpd.h: Modified 'struct peer' and 'struct bgp_filter' to
61 support rs-clients. A 'struct bgp_table *rib' has been added to the
62 first (to mantain a separated RIB for each rs-client) and two new
63 route-maps have been added to the last (for import/export policies).
64 Added the following #defines: RMAP_{IN|OUT|IMPORT|EXPORT|MAX},
65 PEER_RMAP_TYPE_{IMPORT|EXPORT} and BGP_CLEAR_SOFT_RSCLIENT.
66
67 * bgpd/bgpd.c: Modified the functions that create/delete/etc peers in
68 order to consider the new fields included in 'struct peer' for
69 supporting rs-clients, i.e. the import/export route-maps and the
70 'struct bgp_table'.
71
72 * bgpd/bgp_route.{ch}: Modified several functions related with
73 receiving/sending announces in order to support the new Route Server
74 capabilities.
75 Function 'bgp_process' has been reorganized, creating an auxiliar
76 function for best path selection ('bgp_best_selection').
77 Modified 'bgp_show' and 'bgp_show_route' for displaying information
78 about any RIB (and not only the main bgp RIB).
79 Added commands for displaying information about RS-clients RIBs:
80 'show bgp rsclient (A.B.C.D|X:X::X:X)', 'show bgp rsclient
81 (A.B.C.D|X:X::X:X) X:X::X:X/M', etc
82
83 * bgpd/bgp_table.{ch}: The structure 'struct bgp_table' now has two
84 new fields: type (which can take the values BGP_TABLE_{MAIN|RSCLIENT})
85 and 'void *owner' which points to 'struct bgp' or 'struct peer' which
86 owns the table.
87 When creating a new bgp_table by default 'type=BGP_TABLE_MAIN' is set.
88
89 * bgpd/bgp_vty.c: The commands 'neighbor ... route-server-client' and
90 'no neighbor ... route-server-client' now not only set/unset the flag
91 PEER_FLAG_RSERVER_CLIENT, but they create/destroy the 'struct
92 bgp_table' of the peer. Special actions are taken for peer_groups.
93 Command 'neighbor ... route-map WORD (in|out)' now also supports two
94 new kinds of route-map: 'import' and 'export'.
95 Added commands 'clear bgp * rsclient', etc. These commands allow a new
96 kind of soft_reconfig which affects only the RIB of the specified
97 RS-client.
98 Added commands 'show bgp rsclient summary', etc which display a
99 summary of the rs-clients configured for the corresponding address
100 family.
101
102 * bgpd/bgp_routemap.c: A new match statement is available,
103 'match peer (A.B.C.D|X:X::X:X)'. This statement can only be used in
104 import/export route-maps, and it matches when the peer who announces
105 (when used in an import route-map) or is going to receive (when used
106 in an export route-map) the route is the same than the one specified
107 in the statement.
108 For peer-groups the statement matches if the specified peer is member
109 of the peer-group.
110 A special version of the command, 'match peer local', matches with
111 routes originated by the Route Server (defined with 'network ...',
112 redistributed routes and default-originate).
113
114 * lib/routemap.{ch}: Added a new clause 'call NAME' for use in
115 route-maps. It jumps into the specified route-map and when it returns
116 the first route-map ends if the called RM returns DENY_MATCH, or
117 continues in other case.
118
119 2004-08-31 Greg Troxel <gdt@poblano.ir.bbn.com>
120
121 * Makefile.am: make m4 as subdir, rather the EXTRA_DISTing it
122
123 * configure.ac: add m4/Makefile to output list
124
125 2004-08-31 Greg Troxel <gdt@poblano.ir.bbn.com>
126
127 * Makefile.am: Only put pkgsrc dir in SUBDIRS if we should install
128 rc.d files. (Note that pkgsrc is always in DIST_SUBDIRS.)
129
130 * configure.ac (pkgsrcdir): add new --enable-pkgsrcrcdir to give a
131 directory into which www.pkgsrc.org-style rc.d files are
132 installed.
133
134 2004-08-19 Paul Jakma <paul@dishone.st>
135
136 * Makefile.am: add m4 directory to EXTRA_DIST, and define
137 ACLOCAL_AMFLAGS to have aclocal pull in m4/
138 * configure.ac: AM_PROG_LIBTOOL should be AC_...
139 * update-autotools: print a warning that this script is deprecated
140
141 2004-08-17 Greg Troxel <gdt@fnord.ir.bbn.com>
142
143 * update-autotools: print tools versions to aid people in sending
144 bug reports.
145
146 2004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com>
147
148 * */Makefile.am: Use ../dir/libfoo.la, rather than "-L../dir
149 -lfoo", to avoid linking against installed libraries from a
150 previous version.
151
152 * {lib,ospfd,ospfclient}/Makefile.am: explicitly define the shared
153 library version number to be 0.0
154
155 * configure.ac: remove spurious , so extract.pl is chmod'd +x.
156
157 * HACKING: explain shared library versioning rules
158
159 2004-07-22 Paul Jakma <paul@dishone.st>
160
161 * configure.ac: modify default CFLAGS to be compiler agnostic
162 build Makefile for tests/ subdir.
163
164 2004-07-14 Greg Troxel <gdt@poblano.ir.bbn.com>
165
166 * Makefile.am (EXTRA_DIST): Add missing \, so tools stuff is
167 really in distfile.
168
169 2004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
170
171 * */Makefile.am: use -L../lib -lzebra, so we pick up the shlib
172 version of libzebra when available.
173
174 * configure.ac, update-autotools: Add libtool.
175
176 2004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
177
178 * Makefile.am: add files to EXTRA_DIST rather than copying, and
179 omit the kludgy cleaning steps, which were failing when the list
180 to clean was empty.
181
182 2004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
183
184 * configure.ac: Look for perl, and substitute into vtysh/extract.pl.
185 Search for termcap functions more expansively (fixes vtysh compile
186 on NetBSD). Clean up --enable-vtysh definition.
187
188 2004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
189
190 * update-autotools: Use -rf on autom4te.cache.
191
192 2004-06-20 Hasso Tepper <hasso@estpak.ee>
193
194 * lib/vty.c: Don't attempt to load configuration file from current
195 directory.
196 * Update vty_read_config() calls in bgpd/bgp_main.c, isisd/isis_main.c,
197 ospf6d/ospf6_main.c, ospfd/ospf_main.c, ripd/rip_main.c,
198 ripngd/ripng_main.c and zebra/main.c.
199
200 2004-05-11 Paul Jakma <paul@dishone.st>
201
202 * configure.ac: Add solaris support for the zebra/*_solaris
203 method's, based on Sowmini's patches.
204
205 2004-04-08 Paul Jakma <paul@dishone.st>
206
207 * ospf_spf.h: Add backlink field to struct vertex
208 * ospf_spf.h: (ospf_vertex_new) initialise backlink
209 (ospf_lsa_has_link) return index of link back to
210 vertex V from candidate vertex W, or -1 if no link exists.
211 (ospf_spf_next) save backlink index for candidate vertex
212 * ospf_interface.c: (ospf_vl_set_params) Use the backlink index
213 to determine correct address for virtual-link peers. Fall back
214 to older "pick first link" method if no backlink index exists.
215
216 2004-04-06 Hasso Tepper <hasso@estpak.ee>
217
218 * zebra/ipforward_proc.c: Fixed lowering privileges.
219 * zebra/zserv.c: Fixed "(no) ipv6 forwarding" command logic.
220 * configure.ac: Added --disable-capabilities switch to configure.
221
222 2004-03-22 Hasso Tepper <hasso@estpak.ee>
223
224 * Readded SIGTERM handling so daemons can clean up their stuff if they
225 are killed (not murdered).
226
227 2004-03-20 Michael Bruening <mike@vailsys.com>
228
229 * ospfd/ospf_vty.c: Completed array distribute_str of route types with
230 addition of "isis". This array must be indexed by
231 ZEBRA_ROUTE_(SYSTEM|KERNEL|...) defines in zebra.h, and should
232 be updated with every route type addition. This fix allows
233 commands redistributing routes from (bgp|isis), like "router ospf
234 redistribute bgp ...", to be written to terminal, memory, file,
235 which would otherwise result in a seg fault or, possibly, config
236 file corruption. Overlooked in import of isisd.
237 * Similar fixes to bgpd/bgp_vty.c ospf6d/ospf6_asbr.c ripd/rip_zebra.c
238 and ripngd/ripng_zebra.c.
239
240 2004-03-17 Jean-Yves Simon <lethalwp@tiscali.be>
241
242 * zebra/main.c, ripd/rip_main.c: Fix typos sigusr1 -> sigint,
243 bugzilla #82.
244
245 2004-03-16 David Young <dyoung@pobox.com>
246
247 * (many) reference <lib/version.h> rather than "version.h",
248 because version.h is a generated file and not present in the
249 source tree when using objdir builds.
250
251 2004-03-03 PC Drew <pc@superiorcomm.net>
252
253 * lib/keychain.c: typecast time_t function to long, fixes compile
254 warning.
255 * lib/debug.c: wrapped function with ifdef HAVE_GLIBC_BACKTRACE fixes
256 compile warning when backtrace doesn't exist for that system.
257 * zebra/rtadv.c: for OpenBSD, added include statement for
258 netinet/icmp6.h
259 * zebra/zserv.c: added default case to switch statements, fixes compile
260 warning about certain NEXTHOP_TYPE enumeration values not being
261 handled.
262 * zebra/rt_socket.c: set *mask = NULL by default, fixes compile
263 warning, about mask possibly being used uninitialized.
264 * bgpd/bgp_nexthop.c: added default case to switch statements, fixes
265 compile warning about certain NEXTHOP_TYPE enumeration values not
266 being handled.
267 * ospfd/ospf_spf.c: typecast time_t to long, fixes compile warning.
268 * ospfd/ospf_route.c: typecast route_node->prefix to prefix_ipv4, fixes
269 compile warning.
270 * ospfd/ospf_route.c: typecast prefix_ipv4 to prefix, fixes compile
271 warning.
272 * ospfd/ospf_abr.c: typecast prefix to prefix_ipv4 in two instances,
273 fixes compile warning.
274 * vtysh/vtysh.c: fixed null pointer sentinel value when doing execl and
275 friends, fixes compile warning.
276 * ospf6d/ospf6_damp.c: typecast time_t to long in 4 instances, fixes
277 compile warning.
278 * ospf6d/ospf6_main.c: use MAXPATHLEN (if set) instead of 64 for the
279 _cwd array, fixes compile warning.
280
281 2004-01-19 Paul Jakma <paul@dishone.st>
282
283 * tests/test-sig.c: New file, regression test for sigevents.
284 * lib/Makefile.am: add sigevent.{c,h}
285 * (isis|rip|ripng|ospf|ospf6|bgp)d/\1_main.c: modify for sigevents.
286 * zebra/main.c: ditto.
287
288 2004-01-10 Paul Jakma <paul@dishone.st>
289
290 * Makefile.am: redhat/ is a dist subdir too.
291
292 2004-01-10 Vincent Jardin <jardin@6wind.com>
293
294 * configure.ac: add the redhat/Makefile as a AC_OUTPUT() argument.
295 It fixes build on FreeBSD 5.1 and FreeBSD 4.7
296
297 2004-01-08 Paul Jakma <paul@dishone.st>
298
299 * Makefile.am: as per gdt, specify the redhat dir as a DIST_SUBDIR,
300 remove the redhat/... dist targets - instead these now go in..
301 redhat/Makefile.am: (new) proper place to describe redhat/ dist
302 files, as well as allow quagga.spec to be regenerated properly.
303 redhat/quagga.sysconfig: specify conf file location.
304 redhat/quagga.spec.in: Add 2 patches to RPM build.
305
306 2003-12-30 Paul Jakma <paul@dishone.st>
307
308 * redhat/isisd.init: new file, init script for isisd.
309 redhat/quagga.sysconfig: new file, sysconfig file for quagga
310 initscripts.
311 redhat/quagga.spec.in: various cleanups, including sysconfig patch
312 from RH, fixed UID/GID as per RH EL, shell changed to
313 /sbin/nologin, daemon vty's listen to 127.1 only per default and
314 isisd packaged.
315 redhat/*.init: sysconfig support and runlevels specified.
316
317 2003-12-30 Paul Jakma <paul@dishone.st>
318
319 * Makefile.am: put the redhat/ stuff into EXTRA_DIST rather than
320 copying via dist-hook. Remove ~ files backup cruft from dists.
321 isisd/Makefile.am: sysconf example should go via
322 dist_examples_DATA. The include-netbsd/ headers werent mentioned
323 as sources and werent being copied into dists.
324
325 2003-12-23 Vincent Jardin <jardin@6wind.com>
326
327 * isisd: Import isisd from Sampo Saaristo's source code.
328
329 2003-12-22 Christian Hammers <ch@lathspell.de>
330
331 * configure.ac (and everywhere a regular file is opened for
332 writing): use file permissions from configure rather than
333 compiled-in umask.
334
335 2003-12-22 Hasso Tepper <hasso@estpak.ee>
336
337 * lib/linklist.c: Revert microfix I commited while reverting
338 [quagga-dev 227]. Caused by misreading code.
339
340 2003-12-21 Hasso Tepper <hasso@estpak.ee>
341
342 * lib/linklist.c: Revert patch [quagga-dev 227]. listnode_add_sort()
343 function should not drop nodes in any case. But fix behavior where
344 nodes were added to the end of list when cmp returned 0.
345 * lib/if.c: Check for duplicates before calling listnode_add_sort().
346
347 2003-12-08 Greg Troxel <gdt@fnord.ir.bbn.com>
348
349 * {lib,ospfd,ospfapi}/Makefile.am: Use pkginclude_HEADERS rather
350 than include_HEADERS to place includes in
351 ${prefix}/include/quaggainstead of polluting ${prefix}/include.
352
353 2003-12-04 Greg Troxel <gdt@poblano.ir.bbn.com>
354
355 * configure.ac: When setting exampledir to sysconfdir as a
356 default, don't quote ${sysconfdir}. (Bug reported by Vincent
357 Jardin.)
358
359 2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
360
361 * configure.ac: Compile in Router Advertisement support by
362 default. Note that this does not default to sending RAs; it just
363 makes 'ipv6 nd send-ra' and 'ipv6 nd prefix-advertisement'
364 available. While others may prefer other tools, no argument has
365 been made that router advertisement support is such bloat that it
366 should be compiled out by default (it 9556 bytes on NetBSD/i386 vs
367 8 bytes with the support compiled out). This reversion of a
368 previous change was done in consultation with Paul.
369
370 2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
371
372 * configure.ac: Move tests for v6 header files to after the check
373 for v6 code version, and conditionalize on the right variable.
374 (Fixes problem where v6 header files are not included when v6 is
375 enabled implicitly.)
376
377 2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
378
379 * configure.ac: Add --enable-exampledir to specify where example
380 config files should go, defaulting to sysconfdir.
381
382 * */Makefile.am: use exampledir instead of sysconfdif for examples
383
384 2003-11-02 Paul Jakma <paul@dishone.st>
385
386 * bgpd/bgp_routemap.c: Fix up 'set ip next-hop A.B.C.D|peer-address'
387 route map command so that vtysh can use it. Modified version of
388 Hasso Tepper's patch. Fixes bug #52.
389 * configure.ac: FreeBSD has net-snmp in /usr/local.
390 * redhat/quagga.spec.in: Install libzebra headers with -devel
391 package.
392
393 2003-11-02 Krzysztof Oledzki <oleq@ans.pl>
394
395 * zebra/zebra_rib.c: Revert patch (dating from zebra.org) which
396 caused zebra to read all routes in all tables, rather than just
397 the main table. See [quagga-dev 280].
398
399 2003-10-30 Paul Jakma <paul@dishone.st>
400
401 * configure.ac: netinet/in_systm.h is yet another well-known
402 header file we really should be checking for
403
404 2003-10-27 kamatchi soundaram <kamatchi@tdd.sj.nec.com>
405
406 * ospfd/ospfd.c: Do not increment act_int for an area, as it is done
407 by ospf_ism.c::ism_change_state() - results in incorrect figure
408 for active interfaces in an area.
409
410 2003-10-27 Paul Jakma <paul@dishone.st>
411
412 * lib/if.{ch}: remove ifc_pointtopoint() - left over from the
413 reverted RFC3021 patch.
414
415 2003-10-27 Simon <lists@routemeister.net>
416
417 * ospfd/ospfd.c: if_is_pointopoint() takes (struct interface *), was
418 being called with struct connected. Change to co->ifp.
419
420 2003-10-27 Gilad Arnold <gilad.arnold@terayon.com>
421
422 * zebra/zebra_rib.c: (nexthop_active_update) Check for multipath
423 limit when setting changed flag to avoid spurious changes.
424 (static_install_ipv{4,6}) dont uninstall by default, might not be
425 required - avoid spurious uninstalls.
426 (static_uninstall_ipv{4,6}) only uninstall the route if its
427 actually FIB route.
428
429 2003-10-24 sowmini.varadhan@sun.com
430
431 * ospfd/ospf_network.c: (ospf_sock_init) Exit if socket can not be
432 created.
433
434 2003-10-24 Jose Luis Rubio Guivernau <jrubio@dit.upm.es>
435
436 * Better 'show bgp' support for views (eg ipv6), see [quagga-dev 238]
437 * bgpd/bgp_route.c: (bgp_show) Take a struct bgp argument instead of
438 view string.
439 (bgp_show_neighbor_route) Take a struct peer argument instead of
440 ip string.
441 (peer_adj_routes) ditto
442 (show_adj_routes) ditto
443 (peer_lookup_in_view) new function to return appropriate struct
444 peer for a given view string.
445 (misc) Fixup all calls to above to reflect new calling arguments,
446 and use peer_lookup_in_view as needed. Additional commands
447 installed to use expanded functionality above, existing commands
448 modified to suit as well.
449 * bgpd/bgp_vty.c: 2 new aliases.
450
451 2003-10-24 Paul Jakma <paul@dishone.st>
452
453 * configure.ac: Check for fcntl()
454 * {bgpd,ospf,ospf6d,ripd,ripngd}/Makefile.am: Install conf file via
455 regular automake means, not magic install incantations, see
456 bug #38.
457 * lib/Makefile.am: install the headers, needed to link libzebra.a
458 (and hence libospf.a, OSPF-API, etc.)
459
460 2003-10-24 waldi@debian.org
461
462 * vtysh/Makefile.am: vtysh_cmd.c rebuild was broken because it
463 depended against source files without specification, i.e. it
464 used ../zebra instead of $(top_srcdir)/zebra.
465
466 2003-10-23 Paul Jakma <paul@dishone.st>
467
468 * configure.ac: IRIX configure.ac support. Sort of works.
469 sysctl() crashes though (ipforward), there's some kind of odd
470 padding in the PF_ROUTE socket messages and setsockopt() on
471 SOCK_RAW does not work (so ospfd doesnt work).
472
473 2003-10-22 Paul Jakma <paul@dishone.st>
474
475 * vtysh/Makefile.am: do not include vtysh_cmd.c in dists, its
476 configure dependent. (still need to find a way to make building of
477 it dependent on configure options or include all commands.)
478
479 2003-10-22 Paul Jakma <paul@dishone.st>
480
481 * lib/zebra.h: include limits.h if its there, its a portable header
482 and useful and not just solaris specific. net/route.h is also
483 useful.
484
485 2003-10-22 Paul Jakma <paul@dishone.st>
486
487 * lib/regex.c: bzero -> memset
488 * zebra/ioctl.c: ditto. bzero is not portable.
489
490 2003-10-22 Paul Jakma <paul@dishone.st>
491
492 * zebra/kernel_socket.c: HAVE_IPV6 conditional for WRAPUP when
493 HAVE_SA_LEN is not defined. bcopy -> memcpy, bcopy is not
494 portable.
495
496 2003-10-22 Paul Jakma <paul@dishone.st>
497
498 * configure.ac: Split up header checks into non-net, net and ipv6
499 related. Checking of IPv6 is conditional. Add some more output
500 text for the end of the configure run.
501
502 2003-10-18 Lorenzo Colitti <lorenzo@ripe.net>
503
504 * bgpd/bgp_attr.c: (bgp_dump_routes_attr) Dont dump IPv4 nexthop
505 for IP. Dump MP_NLRI attr with IPv6 next-hop for AF_INET6 address
506 family prefixes. Accept prefix as argument.
507 * bgpd/bgp_attr.c: modify bgp_dump_routes_attr declaration.
508 * bgpd/bgp_dump.c: (bgp_dump_routes_entry) Modify calls to
509 bgp_dump_routes_attr.
510 (bgp_dump_common) Go by the family of the peering socket, not
511 configured address family when dumping peering information.
512 Add HAVE_IPV6 conditionals, eg missing from previous bgp interval
513 patch.
514
515 2003-10-18 Lorenzo Colitti <lorenzo@ripe.net>
516
517 * bgpd/bgp_dump.{c,h}: (bgp_dump_interval_add) Dump at discrete
518 fixed intervals rather than fixed intervals from startup time.
519 (bgp_dump_interval_func) Dont return immediately if file cant be
520 openeded, but reschedule interval dumps, even - admin might
521 fix problem in meantime. Close the dump file in between intervals.
522 (bgp_dump_init) account for MSG header when initialising stream
523 size.
524
525 2003-10-15 Paul Jakma <paul@dishone.st>
526
527 * ospfd/ospf_interface: (ospf_if_lookup_table) new function to
528 lookup oi for a given prefix in a given interfaces table of oi's.
529 (ospf_if_new) use ospf_if_lookup_table to deal with zebra
530 reporting new interface multiple times.
531 NB: This patch is a complete plaster-band of a hack. First, why is
532 zebra reporting interface events multiple times? Second, why does
533 ospfd maintain so many damn lists and tables relating to oi's -
534 these should be reconciled into one or two tables.
535
536 2003-10-15 sowmini.varadhan@sun.com
537
538 * ripd/ripd.c: (rip_send_packet) use rip->sock for mcast sends,
539 instead of creating one socket per send. send source addr to
540 rip_update_interface.
541 (rip_update_process) should send an update on every connected
542 network for each interface.
543 (rip_request_send) should send a request on every connected
544 network for each interface.
545 * ripd/ripd.h: update prototype for rip_interface_multicast_set
546 * ripd/rip_interface.c: (rip_interface_multicast_set) reorganized
547 so that it can be called repeatedly for aliased interfaces (on
548 multiple networks).
549
550 2003-10-15 Jay Fenlason <fenlason@redhat.com>
551
552 * lib/vty.c: (vty_telnet_option) Remote DoS exists if a telnet
553 end-sub-negotation is sent when no sub-negotation data has been
554 sent. Return immediately if no sub-negotation is in progress.
555 (vty_read) do not attempt to process options if no sub-negotation
556 is in progress.
557
558 2003-10-15 Paul Jakma <paul@dishone.st>
559
560 * lib/vty.c: (vty_save_cwd) dont crash if getcwd fails. try fallback
561 to SYSCONFDIR. Allocate cwd from the stack rather than relying on
562 (non-portable) getcwd() allocation (which we didnt seem to be
563 freeing).
564
565 2003-10-13 Jay Fenlason <fenlason@redhat.com>
566
567 * lib/zebra.h: define UINT32_MAX for those systems which do not
568 provide it.
569 * bgp_attr.h: define BGP_MED_MAX.
570 * bgp_route.c: update defines/constants to BGP_MED_MAX.
571 * bgp_routemap.c: ditto. clean up route_match_metric_compile
572 slightly to avoid unneccesary XMALLOC.
573
574 2003-10-13 sowmini.varadhan@sun.com
575
576 * ospf_lsa.h: Add OSPF_LSA_PREMATURE_AGE flag.
577 * ospf_lsa.c: added better debug comments. check sequence number in
578 ospf_lsa_install. ospf_maxage_lsa_remover() checks for
579 OSPF_LSA_PREMATURE_AGE and re-originates the lsa after ls_acks are
580 received.
581 * ospf_flood.c: improve debug statement- print ls_seqnum.
582
583 2003-10-13 Douglas Fraser <doug+quagga@idmf.net>
584
585 * zebra/connected.c: PtP revert fixup. Zebra was not creating
586 connected route for PtP peer.
587
588 2003-10-07 Tarhon-Onu Victor <mituc@iasi.rdsnet.ro>
589
590 * zebra/ipforward_proc.c: (ipforward) Close the fd for
591 /proc/net/snmp. See [quagga-dev 284]
592
593 2003-09-29 Gilad Arnold <gilad.arnold@terayon.com>
594
595 * zebra/zebra_rib.c: Fix possible dangling reference to rib
596 route_nodes - unlock it the appropriate number of times. (twice,
597 because of the implicit lock). see [quagga-dev 251].
598
599 2003-09-29 Paul Jakma <paul@dishone.st>
600
601 * zebra/connected.c: revert the 'generic PtP' patch as it causes
602 far too many problems. People who use FreeSWAN should investigate
603 native linux ipsec.
604 * zebra/rt_netlink.c: ditto
605 * lib/if.c: ditto
606 * ripd/ripd.h: ditto
607 * ripd/ripd.c: ditto
608 * ripd/rip_interface.c: ditto
609 * ospfd/ospfd.c: ditto
610 * ospfd/ospf_snmp.c: ditto
611 * bgpd/bgp_nexthop.c: ditto
612 * ospfd/ospf_packet.c: Add debug output for some of the previously
613 completely silent drops of 'bad' packets.
614 * configure.ac: bump version
615
616 2003-08-27 Jay Fenlason <fenlason@redhat.com>
617
618 * lib/Makefile.am: Do not use a lib (libcap) as a dependency
619 * zebra/Makefile.am: Link in libcap
620 * bgpd/bgp_routemap.c: attr->med is type u_in32_t, should be
621 compared with UINT32_MAX
622 * ospfd/ospfd.c: remove redundant assert
623 * zebra/rtadv.c: add missing include for zebra/rib.h
624
625 2003-09-24 Paul Jakma <paul@dishone.st>
626
627 * lib/version.h: moved to version.h.in
628 * lib/version.h.in: New file, from version.h. Change hardcoded
629 package name and version to use the autoconf defined substition
630 variables.
631 * configure.ac: Fix up AC/AM_INIT* to new style. Remove the sed'ing
632 through lib/version.h for VERSION. Add lib/version.h to the
633 AC_OUTPUT list. Update the text output of quagga version at end
634 of configure run to use PACKAGE_VERSION.
635 * doc/.cvsignore: ignore quagga.pdf
636 * doc/.cvsignore: ignore version.h, its now autogenerated.
637
638 2003-09-24 sowmini.varadhan@sun.com
639
640 * lib/if.c: (if_cmp_func) fix infinite loop if
641 ifp1->name == ifp2->name
642 * lib/linklist.c: (if_cmp_func) Fix handling of case where
643 list->cmp returns 0.
644 * rip_interface.c: (rip_interface_address_add) call
645 rip_enable_apply(), or the interface is never considered up.
646 see [quagga-dev 225].
647 * zebra/kernel_socket.c: Fix up WRAPUP macro to deal with multiple
648 address families in the absence of sa_len element in struct
649 sockaddr.
650 (ifm_read): Handle solaris 9 if_msghdr_t.
651 Deal with interfaces which are incomplete, lookup on name rather
652 than the placeholder interface index of -1.
653
654 2003-09-24 Thomas Giger TGC <thomas.giger@tgc.de>
655
656 * ospf_packet.c (ospf_associate_packet_vl): pass NULL struct
657 interface to ospf_if_lookup_by_local_addr() rather than the
658 receiving interface ifp, packets for VL's could come in any
659 interface. See quagga-dev 250.
660
661 2003-04-13 Paul Jakma <paul@dishone.st>
662
663 * Amir: Opaque LSA bug fix for deletion of Type11's
664 * configure.ac: use --localstatedir for Unix sockets
665 * Hasso Tepper: When flushing as-ext LSAs flush associated NSSA
666 LSAs.
667
668 2003-04-04 Paul Jakma <paul@dishone.st>
669
670 * Sync to Zebra CVS
671 * Fix lib/thread.h leak
672 * Fix small Opaque LSA leak
673 * Do not configure OSPF interfaces for secondary addresses
674 * vtysh fixes from Hasso
675 * Dave Watson's missing ntohs fix
676
677 2003-03-25 Paul Jakma <paul@dishone.st>
678
679 * Sync to Zebra CVS
680
681 2003-03-17 Amir Guindehi <amir@datacore.ch>
682
683 * Extended SNMP checks in configure.ac so that net-snmp works
684
685 2003-03-17 Amir Guindehi <amir@datacore.ch>
686 Ralph Keller <keller@tik.ee.ethz.ch>
687 * merge OSPF-API
688
689 2003-02-07 Paul Jakma <paul@dishone.st>
690
691 * Sync to zebra CVS
692
693 2003-02-03 Paul Jakma <paul@dishone.st>
694
695 * Sync to zebra CVS
696
697 2003-01-19 Paul Jakma <paul@dishone.st>
698
699 * Temporary fix for Generic PtP wrt to IPv6
700
701 2003-01-17 Paul Jakma <paul@dishone.st>
702
703 * Sync up to latest zebra.org CVS
704 * [zebra 16823] Bugfix and new feature in Opaque-LSA handling
705 Masahiko Endo <endo@suri.co.jp>
706 * [zebra 16824] [PATCH] nsm_kill_neighbor
707 Masahiko Endo <endo@suri.co.jp>
708 * [zebra 17217] [PATCH] show thread CPU
709 Yon Uriarte <havanna_moon@gmx.net>
710 * [zebra 17218] Re: [PATCH] CLI extensions.
711 Yon Uriarte <havanna_moon@gmx.net>
712
713 2002-12-13 Paul Jakma <paul@dishone.st>
714
715 * added support for vtysh 'write file' command to
716 write either per-daamon and/or integrated file
717 * ospfd md5 buffer copying fix (Greg Troxel)
718 * ospfd md5 sequence number derived from time()
719 * RIPv1 fixes and improvements (John Hay)
720 * link state detection (linux) ([zebra 12269])
721 * Generic PtP and RFC3021 interface addressing support
722 (Frank van Maarseveen)
723 * Michal Ludvig <michal@logix.cz>:
724 [zebra 16525] PATCH: Bugfixes for KAME systems
725 * Kevin C Miller <kevinm@andrew.cmu.edu>
726 [zebra 16681] OSPF NSSA Patches
727 * Yon Uriarte <havanna_moon@gmx.net>
728 [zebra 16671] [PATCH] CLI extensions
729 * Masahiko Endo: [zebra 15475] - MPLS-TE docs
730
731 2002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
732
733 * zebra-0.93 released.
734
735 2002-06-28 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
736
737 * update-autotools: Change file name from update-auto-tools.sh.
738
739 2002-06-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
740
741 * update-auto-tools.sh: Add a new script to clean up build
742 environment.
743
744 2002-06-18 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
745
746 * Shift to the latest build environment autoconf-2.53 and
747 automake-1.6.2.
748
749 2001-10-22 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
750
751 * Integrate Glen Turner <glen.turner@aarnet.edu.au>'s pid option.
752
753 2001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
754
755 * zebra-0.92a released.
756
757 2001-08-19 "Peter Galbavy" <peter.galbavy@knowtion.net>
758
759 * configure.in: SNMP library check problem fix when the library is
760 installed under /usr/local/lib.
761
762 2001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
763
764 * zebra-0.92 released.
765
766 2001-04-22 Kunihiro Ishiguro <kunihiro@zebra.org>
767
768 * configure.in (LIBPAM): Use ZEBRA_AC_C_BIGENDIAN to avoid a
769 warning.
770 (IF_METHOD): Use test -r instead of AC_CHECK_FILE to avoid
771 warnings.
772
773 * config.guess: Update to 2000-11-10 version.
774
775 2001-04-11 Kunihiro Ishiguro <kunihiro@zebra.org>
776
777 * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER to
778 detect in_pktinfo structure. Suggested by: Vlad Lungu
779 <vlad@rls.roknet.ro>.
780
781 2001-03-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
782
783 * configure.in: Add check for structure in_pktinfo.
784
785 2001-02-07 "Bjoern A. Zeeb" <bzeeb+zebra@zabbadoz.net>
786
787 * configure.in (USE_PAM): Fix PAM library detection code.
788
789 2001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
790
791 * zebra-0.91 is released.
792
793 2001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
794
795 * configure.in: Remove guile related definition.
796
797 2001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
798
799 * configure.in (ac_cv_htonl_works): HAVE_REPAIRABLE_HTONL is
800 removed. htonl should work fine on any platform.
801
802 2001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
803
804 * configure.in: Remove --enable-oldrib option.
805
806 * acconfig.h: OLD_RIB definition is removed.
807
808 * zebra-0.90 is released.
809
810 * configure.in (LIBS): Add check for sun_len field in struct
811 sun_len.
812
813 2001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
814
815 * Makefile.am: Include init/redhat files to distribution.
816
817 2001-01-07 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
818
819 * configure.in: check libm.a for BGPd compile error.
820 AC_CHECK_LIB(m, main) was added.
821
822 2000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
823
824 * configure.in: --enable-unixdomain becomes default. Add
825 --enable-tcp-zebra for TCP/IP communication between protocol
826 daemon and zebra.
827
828 * COPYING.LIB: Added for lib/getopt.c, lib/getopt.h,
829 lib/getopt1.c, lib/md5-gnu.h, lib/md5.c, lib/regex-gnu.h,
830 lib/regex.c.
831
832 * Makefile.am (dist-hook): Include tools/*.cgi to distribution.
833
834 2000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
835
836 * configure.in (MULTIPATH_NUM): --enable-multipath=ARG specify
837 multipath number. ARG must be digit.
838
839 2000-12-11 Kunihiro Ishiguro <kunihiro@zebra.org>
840
841 * configure.in: Add --enable-newrib for test new RIB code.
842
843 2000-11-25 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
844
845 * configure.in, config.h.in: Add check for libutil.h and
846 setproctitle().
847
848 2000-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
849
850 * configure.in: Add --enable-nssa for OSPF NSSA option.
851
852 * acconfig.h: Define HAVE_NSSA.
853
854 2000-10-25 "Bjoern A. Zeeb" <bzeeb+zebra@zabbadoz.net>
855
856 * configure.in: pam_misc is only linked when the platform is
857 GNU/Linux.
858
859 2000-10-24 Arkadiusz Miskiewicz <misiek@pld.org.pl>
860
861 * configure.in (LIBS): Add check for crypto library. test x`ls
862 ${ac_snmp}` is replaced with sipmle test -f.
863
864 2000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
865
866 * configure.in: Add --enable-unixdomain option. This will be
867 default behavior in zebra-0.90.
868
869 2000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
870
871 * zebra-0.89 is released.
872
873 2000-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
874
875 * configure.in: Add check for Intel CPU for Solaris on x86 check.
876
877 2000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
878
879 * configure.in: Add check for getifaddrs().
880 Set AM_INIT_AUTOMAKE version to 0.89.
881
882 2000-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
883
884 * config.guess: Update to the latest version.
885
886 * config.sub: Likewise
887
888 2000-09-14 David Lipovkov <dlipovkov@OpticalAccess.com>
889
890 * REPORTING-BUGS: New file is added.
891
892 2000-08-27 itojun@iijlab.net
893
894 * configure.in: Add ncurses library check when --enable-vtysh is
895 specified.
896
897 2000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
898
899 * configure.in: Add check for readline/history.h.
900
901 * acconfig.h: Remove pthread related variables.
902
903 * configure.in: Add --with-libpam option for vtysh PAM
904 authentication. Remove --disable-pthread because we don't support
905 pthread.
906
907 2000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
908
909 * zebra-0.88 is released.
910
911 * configure.in: Add Solaris -lcurses for vtysh.
912
913 2000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
914
915 * configure.in: Add check for ncurses for compiling on Solaris.
916
917 2000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
918
919 * configure.in: Add check for libreadline when --enable-vtysh is
920 specified.
921
922 2000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
923
924 * configure.in: Add AC_DEFINE(OPEN_BSD). When OS is OpenBSD
925 interface method is if_ioctl.o
926
927 2000-07-09 Chris Dunlop <chris@onthe.net.au>
928
929 * acconfig.h: Add HAVE_BROKEN_ALIASES.
930
931 * configure.in: Add --enable-broken-aliases.
932
933 2000-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
934
935 * Set version to zebra-0.87.
936
937 2000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
938
939 * configure.in: Remove --enable-mpls-vpn. Now MPLS-VPN support is
940 default.
941
942 * Set version to zebra-0.87-pre
943
944 * Makefile.am: Likewise.
945
946 2000-04-27 Kunihiro Ishiguro <kunihiro@zebra.org>
947
948 * Set version to 0.86.
949
950 2000-03-21 Kunihiro Ishiguro <kunihiro@zebra.org>
951
952 * Set version to 0.85b for ospfd test.
953
954 2000-03-20 Kunihiro Ishiguro <kunihiro@zebra.org>
955
956 * Set version to 0.85a for ospfd test.
957
958 2000-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
959
960 * Set version to 0.85.
961
962 2000-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
963
964 * Makefile.in: Regenerated by patched automake for fixing "make
965 clean" problem on FreeBSD.
966
967 1999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
968
969 * Set version to 0.83a. This is for *BSD static route lookup
970 problem.
971
972 1999-12-06 Kunihiro Ishiguro <kunihiro@zebra.org>
973
974 * Set version to 0.83.
975
976 1999-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
977
978 * Set version to 0.82.
979
980 1999-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
981
982 * aczebra.m4: New file added.
983
984 1999-11-21 Michael Handler <handler@sub-rosa.com>
985
986 * configure.in (LIBS): Add sa_len check of sockaddr.
987
988 * acconfig.h: Add HAVE_SA_LEN.
989
990 1999-11-12 Kunihiro Ishiguro <kunihiro@zebra.org>
991
992 * version.h: Update version to zebra-0.81b for bgpd test.
993
994 1999-11-09 Kunihiro Ishiguro <kunihiro@zebra.org>
995
996 * configure.in: Add --enable-mbgp.
997
998 1999-11-05 Kunihiro Ishiguro <kunihiro@zebra.org>
999
1000 * Makefile.am (EXTRA_DIST): Add TODO to the distribution.
1001
1002 1999-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1003
1004 * TODO: New file is added.
1005
1006 1999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1007
1008 * version.h: Update version to zebra-0.81a for ospfd test.
1009
1010 1999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1011
1012 * configure.in: New option --enable-snmp is added.
1013
1014 1999-10-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1015
1016 * version.h: Update version to zebra-0.80.
1017
1018 1999-10-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1019
1020 * version.h: Update version to zebra-0.80-pre3
1021
1022 1999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1023
1024 * configure.in (LIBS): SNMP check is done by ucd-snmp/asn1.h.
1025
1026 1999-10-10 Peter Galbavy <Peter.Galbavy@knowledge.com>
1027
1028 * configure.in: Add support of OpenBSD.
1029
1030 1999-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1031
1032 * version.h: Update version to zebra-0.80-pre2.
1033
1034 1999-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1035
1036 * version.h: Update version to zebra-0.80-pre. From this version,
1037 access-list and prefix-list's name space is divided into IPv4 and
1038 IPv6.
1039
1040 1999-09-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1041
1042 * version.h: For test recent fixes Set version to zebra-0.79a.
1043
1044 1999-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1045
1046 * version.h: zebra-0.79 is out.
1047
1048 1999-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1049
1050 * version.h: For ospfd's virtual link test. Set version to 0.78h.
1051
1052 1999-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1053
1054 * version.h: For ospfd test. Set version to 0.78g.
1055
1056 1999-09-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1057
1058 * version.h: For internal test of ospfd. Set version to 0.78f.
1059
1060 1999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1061
1062 * version.h: To test ospfd's fix, set version to 0.78e.
1063
1064 1999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1065
1066 * version.h: To test ospfd's area related bug fix, set version
1067 to 0.78d.
1068
1069 1999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1070
1071 * version.h: To test ospfd, set version to 0.78c.
1072
1073 1999-08-31 Janos Farkas <chexum@shadow.banki.hu>
1074
1075 * Many misspelling correction.
1076
1077 1999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1078
1079 * version.h: To test ospfd, set version to 0.78b.
1080
1081 1999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1082
1083 * configure.in (LIBS): Add UCD-SNMP include path check.
1084
1085 1999-08-31 Lars Fenneberg <lf@elemental.net>
1086
1087 * configure.in: The logic which detects the UCD-SNMP library
1088 should first check in the default system locations for the library
1089 and then in /usr/local.
1090
1091 1999-08-27 itojun@iijlab.net
1092
1093 * configure.in (LIBS): Fix problem about libsnmp.a check.
1094
1095 1999-08-26 kay <kay@v6.access.co.jp>
1096
1097 * configure.in (CFLAGS): Add <sys/socket.h> to check socklen_t.
1098
1099 1999-08-24 VOP <vop@unity.net>
1100
1101 * filter.c: Include "sockunion.h".
1102 plist.c: Likewise.
1103 table.c: Likewise.
1104
1105 1999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1106
1107 * configure.in: Add netinet6/in6.h check.
1108
1109 1999-08-21 Masaki Minami <masaki@minami.org>
1110
1111 * BSD/OS 4.0 porting.
1112
1113 1999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1114
1115 * configure.in: Add --enable-netlink option to force to use Linux
1116 netlink interface.
1117 (CFLAGS): Add ucd-snmp library check.
1118
1119 * acconfig.h: If socklen_t is not defined, typedef int to
1120 socklen_t.
1121
1122 1999-08-15 Arkadiusz Miskiewicz <misiek@misiek.eu.org>
1123
1124 * configure.in: When --enable-ipv6 specified, then only kernel
1125 version is checked.
1126
1127 1999-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1128
1129 * configure.in: Add GNU libc 2.1 check.
1130
1131 1999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1132
1133 * configure.in: Fix privious Linux IPv6 check changes.
1134
1135 1999-08-02 Arkadiusz Miskiewicz <misiek@misiek.eu.org>
1136
1137 * configure.in: Improve Linux IPv6 feature check.
1138
1139 1999-07-29 Rick Payne <rickp@rossfell.co.uk>
1140
1141 * Changed route-maps to behave in a more cisco-like fashion
1142
1143 1999-07-27 Gerhard Poul <gpoul@gnu.org>
1144
1145 * SERVICES: New file added.
1146
1147 1999-07-12 itojun@iijlab.net
1148
1149 * configure.in: Add check for getaddrinfo. Improve Kame related
1150 library check.
1151
1152 1999-07-07 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1153
1154 * configure.in, acconfig.h: Add check for FreeBSD 3.2.
1155
1156 1999-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1157
1158 * configure.in: Delete check for netinet/ip6.h.
1159
1160 1999-06-30 Gerhard Poul <gpoul@gnu.org>
1161
1162 * README: remixed the old files and added some new parts.
1163 moved some INSTALL stuff into INSTALL file.
1164 moved some other stuff to doc/zebra.texi
1165
1166 1999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1167
1168 * configure.in (LIBS): Add libresolv check.
1169 Change --enabe-all-in-one option to --enable-one-vty.
1170
1171 1999-06-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1172
1173 * configure.in: Add --enabe-all-in-one option.
1174
1175 1999-06-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1176
1177 * configure.in: Add socklen_t check.
1178
1179 1999-06-16 Gerhard Poul <gpoul@gnu.org>
1180
1181 * Many compile warnings fixed.
1182
1183 1999-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1184
1185 * configure.in: Change message from Linux 2.2.X IPv6 to Linux IPv6.
1186 OpenBSD (NRL) check is enabled.
1187
1188 1999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1189
1190 * configure.in (LIBS): Add crypt library check.
1191
1192 1999-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1193
1194 * configure.in: Add sin6_scope_id in struct sockaddr_in6 check.
1195
1196 1999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1197
1198 * Set version to 0.63 for first beta package.
1199
1200 1999-04-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1201
1202 * guile.m4: Added from guile package.
1203
1204 1999-04-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1205
1206 * Set version to 0.60 for beta package preparation.
1207
1208 1999-04-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1209
1210 * Makefile.am: Add noninst_LIBRARIES each directory's Makefile.am.
1211 This change is for linking these libraries to guile.
1212
1213 1999-04-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1214
1215 * configure.in (LIBS): Add struct rt_addrinfo check.
1216
1217 1999-04-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1218
1219 * configure.in: AC_STDC_HEADERS added.
1220
1221 1999-03-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1222
1223 * Add dependencies to each directory's Makefile.am.
1224
1225 1999-03-02 Peter Galbavy <Peter.Galbavy@knowledge.com>
1226
1227 * reworked include file structure, and configure so that all
1228 source files get all system-dependent include files by including
1229 <zebra.h> which is really lib/zebra.h. This means that the
1230 different programs include files are now available as #include
1231 "zebra/zebra.h" - note the use of quotes, not <> as delimiters.
1232
1233 In practical terms, if I haven't really screwed up, the main file
1234 that maintainers for other OSes have to change is lib/zebra.h for
1235 all the conditional includes etc.
1236
1237 * added --disable-pthread for those systems that seem to have
1238 POSIX threads, but do not work. OpenBSD 2.4+ is like that just
1239 now. Changed all occurance of #ifdef PTHREAD to use HAVE_PTHREAD
1240 instead.
1241
1242 1999-02-24 <kunihiro@zebra.org>
1243
1244 * configure.in: update to AC_PREREQ(1.13).
1245 Change message from Linux 2.1.x to Linux 2.2.x.
1246 * Added ospf6d directory support.
1247
1248 1999-02-22 Peter Galbavy <Peter.Galbavy@knowledge.com>
1249
1250 * added a "log" element to the BGPd peer structure, enabling us to
1251 start thinging about a log stream per peer. This is currently
1252 ignored by the wrapper code, but developers should try to use the
1253 "appropriate" ZLOG stream. Documentation will follow, when the
1254 real routines start to exist.
1255
1256 The current plan is to use a copy of the BSD syslog() routines and
1257 replace the syslog library function with our own. I will need
1258 feedback from users of other platforms as this work is done to see
1259 if all is well elsewhere.
1260
1261 * preliminary work on zlog() library. directly replaces syslog()
1262 currently with zlog(ZLOG *, ...) where the new first argument
1263 is a pointer to a ZLOG structure (defined in lib/log.h) and will
1264 encapsulate all the information necessary to maintain multiple
1265 logging streams.
1266
1267 1999-02-19 Peter Galbavy <Peter.Galbavy@knowledge.com>
1268
1269 * added vsnprintf() macro to lib/str.h if required and removed
1270 #ifdef SUNOS_5 dependency on it
1271
1272 1999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1273
1274 * syslog support added
1275
1276 1999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1277
1278 * configure.in: Add daemon function check.
1279
1280 1999-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1281
1282 * configure.in: Add --disable-ipv6, --disable-zebra,
1283 --disable-bgpd, --disable-ripd, --disable-ripngd, --disable-ospfd
1284 options to configure.
1285
1286 1998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1287
1288 * configure.in: Check /usr/inet6/lib/libinet6.a exists or not.
1289
1290 1998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1291
1292 * configure.in: Comment out FreeBSD's libc_r detect section. At
1293 this moment it doesn't work correctly with zebra.
1294
1295 Netlink interface is only enabled when Linux kernel version is
1296 upper than 2.1.0.
1297
1298 1998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1299
1300 * Hydrangea is now called KAME, so change all defines.
1301
1302 1998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1303
1304 * configure.in: ifaliasreq check added.
1305
1306 1998-08-12 Katsuhiro Kondou <kondou@nec.co.jp>
1307
1308 * Patch is applied for compile under EWS4800
1309
1310 1998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1311
1312 * configure.in: delete old mtu_method check.
1313
1314 * doc/zebra.texi (Kernel interface): chapter `Kernel interface' added
1315
1316 1998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1317
1318 * configure.in: add new netlink check for GNU/Linux
1319
1320 1998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1321
1322 * doc/zebra.texi: Update Linux netlink chapter.
1323
1324 1998-05-18 Yamashita TAKAO <jargon@lares.dti.ne.jp>
1325
1326 * config.h.in: define PTHREAD if work on Solaris 2.6
1327 why delete the definition? I miss?
1328
1329 1998-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1330
1331 * configure.in: add net/if.h header check.
1332
1333 1998-05-02 SeonMeyong HEO <seirios@Matrix.iri.co.jp>
1334
1335 * zebra.tex,archfig.tex,zebra.sty: Manual file is added.
1336 * zebra.texi: Modify Introduction text.
1337 * RIPngd.c: Patch Hydrangea code.
1338
1339 1998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1340
1341 * .cvsignore: added.
1342
1343 * Makerule.in: is gone.
1344 * Makefile.am: Now we use automake to generate Makefile.in
1345
1346 1998-03-19 Yamashita TAKAO <jargon@lares.dti.ne.jp>
1347
1348 * lib/vty.c: modified the definition of *master
1349 * lib/sockunion.c (inet_aton): add, but don't work. uum...
1350
1351
1352 1998-03-15 Yamashita TAKAO <jargon@lares.dti.ne.jp>
1353
1354 * configure.in: define PTHREAD if work on Solaris 2.6
1355 * config.h.in: likewise
1356 * lib/thread.c: likewise
1357 * lib/vty.c: likewise
1358
1359 1998-03-15 SeonMeyong HEO <seirios@Matrix.iri.co.jp>
1360
1361 * config.h.in: define INET6 if defined HAVE_IPV6 & HYDRANGEA
1362 * bgpd/: remove include <netinet6/in6.h> line.
1363 * lib/: remove include <netinet6/in6.h> line.
1364 * ripbgd/: remove include <netinet6/in6.h> line.
1365 * zebra/: remove include <netinet6/in6.h> line.
1366 * ripd/*.c: remove include <netinet6/in6.h> line.
1367 undefine IPV6 difinitions because RIPd is not worked for
1368 IPv6 protocol.
1369
1370
1371 1998-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1372
1373 * configure.in: Change routing socket check method from
1374 AC_TRY_COMPILE to AC_TRY_RUN because GNU libc version 2 has
1375 AF_ROUTE but over linux it's meenigless.
1376
1377 1998-01-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1378
1379 * config.h.in: remove err_t define.
1380
1381 1997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1382
1383 * configure.in (canonical): add check of IF_METHOD
1384
1385 1997-09-27 Kunihiro Ishiguro <kunihiro@note.digital-magic.co.jp>
1386
1387 * configure.in: add INRIA check
1388
1389 1997-09-25 Kunihiro Ishiguro <kunihiro@note.digital-magic.co.jp>
1390
1391 * configure.in (canonical): change ipforward_snmp.o to ipforward_proc.o
1392
1393 1997-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1394
1395 * configure.in: change IRDPD to NDPD
1396
1397 1997-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1398
1399 * INSTALL: new file
1400
1401 1997-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1402
1403 * config.h: add XCALLOC()
1404