blob: c1bebd8dfc15ab211df5427b37f870f74f0cbecc [file] [log] [blame]
gdtaa9af782004-07-14 13:55:28 +000012004-07-14 Greg Troxel <gdt@poblano.ir.bbn.com>
2
3 * Makefile.am (EXTRA_DIST): Add missing \, so tools stuff is
4 really in distfile.
5
gdtcf313882004-06-30 13:24:42 +000062004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
7
gdt87efd642004-06-30 17:36:11 +00008 * */Makefile.am: use -L../lib -lzebra, so we pick up the shlib
9 version of libzebra when available.
10
11 * configure.ac, update-autotools: Add libtool.
12
132004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
14
gdtf2bfdee2004-06-30 17:25:15 +000015 * Makefile.am: add files to EXTRA_DIST rather than copying, and
16 omit the kludgy cleaning steps, which were failing when the list
17 to clean was empty.
18
192004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
20
gdtfc9d0742004-06-30 14:25:12 +000021 * configure.ac: Look for perl, and substitute into vtysh/extract.pl.
22 Search for termcap functions more expansively (fixes vtysh compile
23 on NetBSD). Clean up --enable-vtysh definition.
24
252004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
26
gdtcf313882004-06-30 13:24:42 +000027 * update-autotools: Use -rf on autom4te.cache.
28
hasso320ec102004-06-20 19:54:37 +0000292004-06-20 Hasso Tepper <hasso@estpak.ee>
30
31 * lib/vty.c: Don't attempt to load configuration file from current
32 directory.
33 * Update vty_read_config() calls in bgpd/bgp_main.c, isisd/isis_main.c,
34 ospf6d/ospf6_main.c, ospfd/ospf_main.c, ripd/rip_main.c,
35 ripngd/ripng_main.c and zebra/main.c.
36
paul19877dd2004-05-11 10:49:35 +0000372004-05-11 Paul Jakma <paul@dishone.st>
38
39 * configure.ac: Add solaris support for the zebra/*_solaris
40 method's, based on Sowmini's patches.
41
pauld355bfa2004-04-08 07:43:45 +0000422004-04-08 Paul Jakma <paul@dishone.st>
43
44 * ospf_spf.h: Add backlink field to struct vertex
45 * ospf_spf.h: (ospf_vertex_new) initialise backlink
46 (ospf_lsa_has_link) return index of link back to
47 vertex V from candidate vertex W, or -1 if no link exists.
48 (ospf_spf_next) save backlink index for candidate vertex
49 * ospf_interface.c: (ospf_vl_set_params) Use the backlink index
50 to determine correct address for virtual-link peers. Fall back
51 to older "pick first link" method if no backlink index exists.
52
hasso41d3fc92004-04-06 11:59:00 +0000532004-04-06 Hasso Tepper <hasso@estpak.ee>
54
55 * zebra/ipforward_proc.c: Fixed lowering privileges.
56 * zebra/zserv.c: Fixed "(no) ipv6 forwarding" command logic.
57 * configure.ac: Added --disable-capabilities switch to configure.
58
hassof571dab2004-03-22 08:55:25 +0000592004-03-22 Hasso Tepper <hasso@estpak.ee>
60
61 * Readded SIGTERM handling so daemons can clean up their stuff if they
62 are killed (not murdered).
63
hasso37318652004-03-20 20:06:15 +0000642004-03-20 Michael Bruening <mike@vailsys.com>
65
66 * ospfd/ospf_vty.c: Completed array distribute_str of route types with
67 addition of "isis". This array must be indexed by
68 ZEBRA_ROUTE_(SYSTEM|KERNEL|...) defines in zebra.h, and should
69 be updated with every route type addition. This fix allows
70 commands redistributing routes from (bgp|isis), like "router ospf
71 redistribute bgp ...", to be written to terminal, memory, file,
72 which would otherwise result in a seg fault or, possibly, config
73 file corruption. Overlooked in import of isisd.
74 * Similar fixes to bgpd/bgp_vty.c ospf6d/ospf6_asbr.c ripd/rip_zebra.c
75 and ripngd/ripng_zebra.c.
76
hasso8c903fb2004-03-17 20:39:18 +0000772004-03-17 Jean-Yves Simon <lethalwp@tiscali.be>
78
79 * zebra/main.c, ripd/rip_main.c: Fix typos sigusr1 -> sigint,
80 bugzilla #82.
81
gdt5e4fa162004-03-16 14:38:36 +0000822004-03-16 David Young <dyoung@pobox.com>
83
84 * (many) reference <lib/version.h> rather than "version.h",
85 because version.h is a generated file and not present in the
86 source tree when using objdir builds.
87
hassofa2b17e2004-03-04 17:45:00 +0000882004-03-03 PC Drew <pc@superiorcomm.net>
89
90 * lib/keychain.c: typecast time_t function to long, fixes compile
91 warning.
92 * lib/debug.c: wrapped function with ifdef HAVE_GLIBC_BACKTRACE fixes
93 compile warning when backtrace doesn't exist for that system.
94 * zebra/rtadv.c: for OpenBSD, added include statement for
95 netinet/icmp6.h
96 * zebra/zserv.c: added default case to switch statements, fixes compile
97 warning about certain NEXTHOP_TYPE enumeration values not being
98 handled.
99 * zebra/rt_socket.c: set *mask = NULL by default, fixes compile
100 warning, about mask possibly being used uninitialized.
101 * bgpd/bgp_nexthop.c: added default case to switch statements, fixes
102 compile warning about certain NEXTHOP_TYPE enumeration values not
103 being handled.
104 * ospfd/ospf_spf.c: typecast time_t to long, fixes compile warning.
105 * ospfd/ospf_route.c: typecast route_node->prefix to prefix_ipv4, fixes
106 compile warning.
107 * ospfd/ospf_route.c: typecast prefix_ipv4 to prefix, fixes compile
108 warning.
109 * ospfd/ospf_abr.c: typecast prefix to prefix_ipv4 in two instances,
110 fixes compile warning.
111 * vtysh/vtysh.c: fixed null pointer sentinel value when doing execl and
112 friends, fixes compile warning.
113 * ospf6d/ospf6_damp.c: typecast time_t to long in 4 instances, fixes
114 compile warning.
115 * ospf6d/ospf6_main.c: use MAXPATHLEN (if set) instead of 64 for the
116 _cwd array, fixes compile warning.
117
paul2d75d052004-01-19 21:31:15 +00001182004-01-19 Paul Jakma <paul@dishone.st>
119
120 * tests/test-sig.c: New file, regression test for sigevents.
121 * lib/Makefile.am: add sigevent.{c,h}
122 * (isis|rip|ripng|ospf|ospf6|bgp)d/\1_main.c: modify for sigevents.
123 * zebra/main.c: ditto.
124
paula27abaa2004-01-10 22:03:07 +00001252004-01-10 Paul Jakma <paul@dishone.st>
126
127 * Makefile.am: redhat/ is a dist subdir too.
128
jardina4d2a0d2004-01-10 20:42:35 +00001292004-01-10 Vincent Jardin <jardin@6wind.com>
130
131 * configure.ac: add the redhat/Makefile as a AC_OUTPUT() argument.
132 It fixes build on FreeBSD 5.1 and FreeBSD 4.7
133
paul00bc5602004-01-09 16:30:52 +00001342004-01-08 Paul Jakma <paul@dishone.st>
135
136 * Makefile.am: as per gdt, specify the redhat dir as a DIST_SUBDIR,
137 remove the redhat/... dist targets - instead these now go in..
138 redhat/Makefile.am: (new) proper place to describe redhat/ dist
139 files, as well as allow quagga.spec to be regenerated properly.
140 redhat/quagga.sysconfig: specify conf file location.
141 redhat/quagga.spec.in: Add 2 patches to RPM build.
142
paul41ad8782003-12-30 11:09:00 +00001432003-12-30 Paul Jakma <paul@dishone.st>
144
paul15d74e92003-12-30 11:16:21 +0000145 * redhat/isisd.init: new file, init script for isisd.
146 redhat/quagga.sysconfig: new file, sysconfig file for quagga
147 initscripts.
148 redhat/quagga.spec.in: various cleanups, including sysconfig patch
149 from RH, fixed UID/GID as per RH EL, shell changed to
150 /sbin/nologin, daemon vty's listen to 127.1 only per default and
151 isisd packaged.
152 redhat/*.init: sysconfig support and runlevels specified.
153
1542003-12-30 Paul Jakma <paul@dishone.st>
155
paul41ad8782003-12-30 11:09:00 +0000156 * Makefile.am: put the redhat/ stuff into EXTRA_DIST rather than
157 copying via dist-hook. Remove ~ files backup cruft from dists.
158 isisd/Makefile.am: sysconf example should go via
159 dist_examples_DATA. The include-netbsd/ headers werent mentioned
160 as sources and werent being copied into dists.
161
jardin9e867fe2003-12-23 08:56:18 +00001622003-12-23 Vincent Jardin <jardin@6wind.com>
163
164 * isisd: Import isisd from Sampo Saaristo's source code.
165
gdtaa593d52003-12-22 20:15:53 +00001662003-12-22 Christian Hammers <ch@lathspell.de>
167
168 * configure.ac (and everywhere a regular file is opened for
169 writing): use file permissions from configure rather than
170 compiled-in umask.
171
hasso47ce02a2003-12-22 16:49:15 +00001722003-12-22 Hasso Tepper <hasso@estpak.ee>
173
174 * lib/linklist.c: Revert microfix I commited while reverting
175 [quagga-dev 227]. Caused by misreading code.
176
hassoe90fbab2003-12-21 09:51:42 +00001772003-12-21 Hasso Tepper <hasso@estpak.ee>
178
179 * lib/linklist.c: Revert patch [quagga-dev 227]. listnode_add_sort()
180 function should not drop nodes in any case. But fix behavior where
181 nodes were added to the end of list when cmp returned 0.
182 * lib/if.c: Check for duplicates before calling listnode_add_sort().
183
gdtaf273652003-12-08 18:12:34 +00001842003-12-08 Greg Troxel <gdt@fnord.ir.bbn.com>
185
186 * {lib,ospfd,ospfapi}/Makefile.am: Use pkginclude_HEADERS rather
187 than include_HEADERS to place includes in
188 ${prefix}/include/quaggainstead of polluting ${prefix}/include.
189
gdtc4f0efe2003-12-04 15:39:25 +00001902003-12-04 Greg Troxel <gdt@poblano.ir.bbn.com>
191
192 * configure.ac: When setting exampledir to sysconfdir as a
193 default, don't quote ${sysconfdir}. (Bug reported by Vincent
194 Jardin.)
195
gdtd6b72f72003-12-03 17:24:27 +00001962003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
197
gdtd2a0ccc2003-12-03 18:13:48 +0000198 * configure.ac: Compile in Router Advertisement support by
199 default. Note that this does not default to sending RAs; it just
200 makes 'ipv6 nd send-ra' and 'ipv6 nd prefix-advertisement'
201 available. While others may prefer other tools, no argument has
202 been made that router advertisement support is such bloat that it
203 should be compiled out by default (it 9556 bytes on NetBSD/i386 vs
204 8 bytes with the support compiled out). This reversion of a
205 previous change was done in consultation with Paul.
206
2072003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
208
gdtfa3232e2003-12-03 17:52:30 +0000209 * configure.ac: Move tests for v6 header files to after the check
210 for v6 code version, and conditionalize on the right variable.
211 (Fixes problem where v6 header files are not included when v6 is
212 enabled implicitly.)
gdtd2a0ccc2003-12-03 18:13:48 +0000213
gdtfa3232e2003-12-03 17:52:30 +00002142003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
215
gdtd6b72f72003-12-03 17:24:27 +0000216 * configure.ac: Add --enable-exampledir to specify where example
217 config files should go, defaulting to sysconfdir.
218
219 * */Makefile.am: use exampledir instead of sysconfdif for examples
220
paul62892882003-11-02 07:31:47 +00002212003-11-02 Paul Jakma <paul@dishone.st>
222
223 * bgpd/bgp_routemap.c: Fix up 'set ip next-hop A.B.C.D|peer-address'
224 route map command so that vtysh can use it. Modified version of
225 Hasso Tepper's patch. Fixes bug #52.
226 * configure.ac: FreeBSD has net-snmp in /usr/local.
227 * redhat/quagga.spec.in: Install libzebra headers with -devel
228 package.
229
2302003-11-02 Krzysztof Oledzki <oleq@ans.pl>
231
232 * zebra/zebra_rib.c: Revert patch (dating from zebra.org) which
233 caused zebra to read all routes in all tables, rather than just
234 the main table. See [quagga-dev 280].
235
2362003-10-30 Paul Jakma <paul@dishone.st>
237
238 * configure.ac: netinet/in_systm.h is yet another well-known
239 header file we really should be checking for
240
2412003-10-27 kamatchi soundaram <kamatchi@tdd.sj.nec.com>
242
243 * ospfd/ospfd.c: Do not increment act_int for an area, as it is done
244 by ospf_ism.c::ism_change_state() - results in incorrect figure
245 for active interfaces in an area.
246
2472003-10-27 Paul Jakma <paul@dishone.st>
248
249 * lib/if.{ch}: remove ifc_pointtopoint() - left over from the
250 reverted RFC3021 patch.
251
2522003-10-27 Simon <lists@routemeister.net>
253
254 * ospfd/ospfd.c: if_is_pointopoint() takes (struct interface *), was
255 being called with struct connected. Change to co->ifp.
256
2572003-10-27 Gilad Arnold <gilad.arnold@terayon.com>
258
259 * zebra/zebra_rib.c: (nexthop_active_update) Check for multipath
260 limit when setting changed flag to avoid spurious changes.
261 (static_install_ipv{4,6}) dont uninstall by default, might not be
262 required - avoid spurious uninstalls.
263 (static_uninstall_ipv{4,6}) only uninstall the route if its
264 actually FIB route.
265
2662003-10-24 sowmini.varadhan@sun.com
267
268 * ospfd/ospf_network.c: (ospf_sock_init) Exit if socket can not be
269 created.
270
2712003-10-24 Jose Luis Rubio Guivernau <jrubio@dit.upm.es>
272
273 * Better 'show bgp' support for views (eg ipv6), see [quagga-dev 238]
274 * bgpd/bgp_route.c: (bgp_show) Take a struct bgp argument instead of
275 view string.
276 (bgp_show_neighbor_route) Take a struct peer argument instead of
277 ip string.
278 (peer_adj_routes) ditto
279 (show_adj_routes) ditto
280 (peer_lookup_in_view) new function to return appropriate struct
281 peer for a given view string.
282 (misc) Fixup all calls to above to reflect new calling arguments,
283 and use peer_lookup_in_view as needed. Additional commands
284 installed to use expanded functionality above, existing commands
285 modified to suit as well.
286 * bgpd/bgp_vty.c: 2 new aliases.
287
2882003-10-24 Paul Jakma <paul@dishone.st>
289
290 * configure.ac: Check for fcntl()
291 * {bgpd,ospf,ospf6d,ripd,ripngd}/Makefile.am: Install conf file via
292 regular automake means, not magic install incantations, see
293 bug #38.
294 * lib/Makefile.am: install the headers, needed to link libzebra.a
295 (and hence libospf.a, OSPF-API, etc.)
296
2972003-10-24 waldi@debian.org
298
299 * vtysh/Makefile.am: vtysh_cmd.c rebuild was broken because it
300 depended against source files without specification, i.e. it
301 used ../zebra instead of $(top_srcdir)/zebra.
302
3032003-10-23 Paul Jakma <paul@dishone.st>
304
305 * configure.ac: IRIX configure.ac support. Sort of works.
306 sysctl() crashes though (ipforward), there's some kind of odd
307 padding in the PF_ROUTE socket messages and setsockopt() on
308 SOCK_RAW does not work (so ospfd doesnt work).
309
3102003-10-22 Paul Jakma <paul@dishone.st>
311
312 * vtysh/Makefile.am: do not include vtysh_cmd.c in dists, its
313 configure dependent. (still need to find a way to make building of
314 it dependent on configure options or include all commands.)
315
3162003-10-22 Paul Jakma <paul@dishone.st>
317
318 * lib/zebra.h: include limits.h if its there, its a portable header
319 and useful and not just solaris specific. net/route.h is also
320 useful.
321
3222003-10-22 Paul Jakma <paul@dishone.st>
323
324 * lib/regex.c: bzero -> memset
325 * zebra/ioctl.c: ditto. bzero is not portable.
326
3272003-10-22 Paul Jakma <paul@dishone.st>
328
329 * zebra/kernel_socket.c: HAVE_IPV6 conditional for WRAPUP when
330 HAVE_SA_LEN is not defined. bcopy -> memcpy, bcopy is not
331 portable.
332
3332003-10-22 Paul Jakma <paul@dishone.st>
334
335 * configure.ac: Split up header checks into non-net, net and ipv6
336 related. Checking of IPv6 is conditional. Add some more output
337 text for the end of the configure run.
338
3392003-10-18 Lorenzo Colitti <lorenzo@ripe.net>
340
341 * bgpd/bgp_attr.c: (bgp_dump_routes_attr) Dont dump IPv4 nexthop
342 for IP. Dump MP_NLRI attr with IPv6 next-hop for AF_INET6 address
343 family prefixes. Accept prefix as argument.
344 * bgpd/bgp_attr.c: modify bgp_dump_routes_attr declaration.
345 * bgpd/bgp_dump.c: (bgp_dump_routes_entry) Modify calls to
346 bgp_dump_routes_attr.
347 (bgp_dump_common) Go by the family of the peering socket, not
348 configured address family when dumping peering information.
349 Add HAVE_IPV6 conditionals, eg missing from previous bgp interval
350 patch.
351
3522003-10-18 Lorenzo Colitti <lorenzo@ripe.net>
353
354 * bgpd/bgp_dump.{c,h}: (bgp_dump_interval_add) Dump at discrete
355 fixed intervals rather than fixed intervals from startup time.
356 (bgp_dump_interval_func) Dont return immediately if file cant be
357 openeded, but reschedule interval dumps, even - admin might
358 fix problem in meantime. Close the dump file in between intervals.
359 (bgp_dump_init) account for MSG header when initialising stream
360 size.
361
3622003-10-15 Paul Jakma <paul@dishone.st>
363
364 * ospfd/ospf_interface: (ospf_if_lookup_table) new function to
365 lookup oi for a given prefix in a given interfaces table of oi's.
366 (ospf_if_new) use ospf_if_lookup_table to deal with zebra
367 reporting new interface multiple times.
368 NB: This patch is a complete plaster-band of a hack. First, why is
369 zebra reporting interface events multiple times? Second, why does
370 ospfd maintain so many damn lists and tables relating to oi's -
371 these should be reconciled into one or two tables.
372
3732003-10-15 sowmini.varadhan@sun.com
374
375 * ripd/ripd.c: (rip_send_packet) use rip->sock for mcast sends,
376 instead of creating one socket per send. send source addr to
377 rip_update_interface.
378 (rip_update_process) should send an update on every connected
379 network for each interface.
380 (rip_request_send) should send a request on every connected
381 network for each interface.
382 * ripd/ripd.h: update prototype for rip_interface_multicast_set
383 * ripd/rip_interface.c: (rip_interface_multicast_set) reorganized
384 so that it can be called repeatedly for aliased interfaces (on
385 multiple networks).
386
3872003-10-15 Jay Fenlason <fenlason@redhat.com>
388
389 * lib/vty.c: (vty_telnet_option) Remote DoS exists if a telnet
390 end-sub-negotation is sent when no sub-negotation data has been
391 sent. Return immediately if no sub-negotation is in progress.
392 (vty_read) do not attempt to process options if no sub-negotation
393 is in progress.
394
3952003-10-15 Paul Jakma <paul@dishone.st>
396
397 * lib/vty.c: (vty_save_cwd) dont crash if getcwd fails. try fallback
398 to SYSCONFDIR. Allocate cwd from the stack rather than relying on
399 (non-portable) getcwd() allocation (which we didnt seem to be
400 freeing).
401
4022003-10-13 Jay Fenlason <fenlason@redhat.com>
403
404 * lib/zebra.h: define UINT32_MAX for those systems which do not
405 provide it.
406 * bgp_attr.h: define BGP_MED_MAX.
407 * bgp_route.c: update defines/constants to BGP_MED_MAX.
408 * bgp_routemap.c: ditto. clean up route_match_metric_compile
409 slightly to avoid unneccesary XMALLOC.
410
4112003-10-13 sowmini.varadhan@sun.com
412
413 * ospf_lsa.h: Add OSPF_LSA_PREMATURE_AGE flag.
414 * ospf_lsa.c: added better debug comments. check sequence number in
415 ospf_lsa_install. ospf_maxage_lsa_remover() checks for
416 OSPF_LSA_PREMATURE_AGE and re-originates the lsa after ls_acks are
417 received.
418 * ospf_flood.c: improve debug statement- print ls_seqnum.
419
4202003-10-13 Douglas Fraser <doug+quagga@idmf.net>
421
422 * zebra/connected.c: PtP revert fixup. Zebra was not creating
423 connected route for PtP peer.
424
4252003-10-07 Tarhon-Onu Victor <mituc@iasi.rdsnet.ro>
426
427 * zebra/ipforward_proc.c: (ipforward) Close the fd for
428 /proc/net/snmp. See [quagga-dev 284]
429
4302003-09-29 Gilad Arnold <gilad.arnold@terayon.com>
431
432 * zebra/zebra_rib.c: Fix possible dangling reference to rib
433 route_nodes - unlock it the appropriate number of times. (twice,
434 because of the implicit lock). see [quagga-dev 251].
435
4362003-09-29 Paul Jakma <paul@dishone.st>
437
438 * zebra/connected.c: revert the 'generic PtP' patch as it causes
439 far too many problems. People who use FreeSWAN should investigate
440 native linux ipsec.
441 * zebra/rt_netlink.c: ditto
442 * lib/if.c: ditto
443 * ripd/ripd.h: ditto
444 * ripd/ripd.c: ditto
445 * ripd/rip_interface.c: ditto
446 * ospfd/ospfd.c: ditto
447 * ospfd/ospf_snmp.c: ditto
448 * bgpd/bgp_nexthop.c: ditto
449 * ospfd/ospf_packet.c: Add debug output for some of the previously
450 completely silent drops of 'bad' packets.
451 * configure.ac: bump version
452
4532003-08-27 Jay Fenlason <fenlason@redhat.com>
454
455 * lib/Makefile.am: Do not use a lib (libcap) as a dependency
456 * zebra/Makefile.am: Link in libcap
457 * bgpd/bgp_routemap.c: attr->med is type u_in32_t, should be
458 compared with UINT32_MAX
459 * ospfd/ospfd.c: remove redundant assert
460 * zebra/rtadv.c: add missing include for zebra/rib.h
461
4622003-09-24 Paul Jakma <paul@dishone.st>
463
464 * lib/version.h: moved to version.h.in
465 * lib/version.h.in: New file, from version.h. Change hardcoded
466 package name and version to use the autoconf defined substition
467 variables.
468 * configure.ac: Fix up AC/AM_INIT* to new style. Remove the sed'ing
469 through lib/version.h for VERSION. Add lib/version.h to the
470 AC_OUTPUT list. Update the text output of quagga version at end
471 of configure run to use PACKAGE_VERSION.
472 * doc/.cvsignore: ignore quagga.pdf
473 * doc/.cvsignore: ignore version.h, its now autogenerated.
474
4752003-09-24 sowmini.varadhan@sun.com
476
477 * lib/if.c: (if_cmp_func) fix infinite loop if
478 ifp1->name == ifp2->name
479 * lib/linklist.c: (if_cmp_func) Fix handling of case where
480 list->cmp returns 0.
481 * rip_interface.c: (rip_interface_address_add) call
482 rip_enable_apply(), or the interface is never considered up.
483 see [quagga-dev 225].
484 * zebra/kernel_socket.c: Fix up WRAPUP macro to deal with multiple
485 address families in the absence of sa_len element in struct
486 sockaddr.
487 (ifm_read): Handle solaris 9 if_msghdr_t.
488 Deal with interfaces which are incomplete, lookup on name rather
489 than the placeholder interface index of -1.
490
4912003-09-24 Thomas Giger TGC <thomas.giger@tgc.de>
492
493 * ospf_packet.c (ospf_associate_packet_vl): pass NULL struct
494 interface to ospf_if_lookup_by_local_addr() rather than the
495 receiving interface ifp, packets for VL's could come in any
496 interface. See quagga-dev 250.
497
paule05fba42003-04-13 20:20:53 +00004982003-04-13 Paul Jakma <paul@dishone.st>
499
500 * Amir: Opaque LSA bug fix for deletion of Type11's
501 * configure.ac: use --localstatedir for Unix sockets
paul645878f2003-04-13 21:42:11 +0000502 * Hasso Tepper: When flushing as-ext LSAs flush associated NSSA
503 LSAs.
paule05fba42003-04-13 20:20:53 +0000504
paul020709f2003-04-04 02:44:16 +00005052003-04-04 Paul Jakma <paul@dishone.st>
506
507 * Sync to Zebra CVS
508 * Fix lib/thread.h leak
509 * Fix small Opaque LSA leak
510 * Do not configure OSPF interfaces for secondary addresses
511 * vtysh fixes from Hasso
512 * Dave Watson's missing ntohs fix
513
paul68980082003-03-25 05:07:42 +00005142003-03-25 Paul Jakma <paul@dishone.st>
515
516 * Sync to Zebra CVS
517
paul07661cb2003-03-18 00:03:05 +00005182003-03-17 Amir Guindehi <amir@datacore.ch>
519
520 * Extended SNMP checks in configure.ac so that net-snmp works
521
5222003-03-17 Amir Guindehi <amir@datacore.ch>
523 Ralph Keller <keller@tik.ee.ethz.ch>
524 * merge OSPF-API
525
paul13766da2003-02-07 14:46:23 +00005262003-02-07 Paul Jakma <paul@dishone.st>
527
528 * Sync to zebra CVS
529
paul420df432003-02-03 20:30:39 +00005302003-02-03 Paul Jakma <paul@dishone.st>
531
532 * Sync to zebra CVS
533
paulae936ae2003-01-20 04:58:21 +00005342003-01-19 Paul Jakma <paul@dishone.st>
535
536 * Temporary fix for Generic PtP wrt to IPv6
537
paul9a668002003-01-18 23:11:44 +00005382003-01-17 Paul Jakma <paul@dishone.st>
539
540 * Sync up to latest zebra.org CVS
541 * [zebra 16823] Bugfix and new feature in Opaque-LSA handling
542 Masahiko Endo <endo@suri.co.jp>
543 * [zebra 16824] [PATCH] nsm_kill_neighbor
544 Masahiko Endo <endo@suri.co.jp>
545 * [zebra 17217] [PATCH] show thread CPU
546 Yon Uriarte <havanna_moon@gmx.net>
547 * [zebra 17218] Re: [PATCH] CLI extensions.
548 Yon Uriarte <havanna_moon@gmx.net>
549
paul4fc01e62002-12-13 20:49:00 +00005502002-12-13 Paul Jakma <paul@dishone.st>
551
552 * added support for vtysh 'write file' command to
paul0efa4d52002-12-13 21:55:43 +0000553 write either per-daamon and/or integrated file
paulab836aa2002-12-13 21:19:02 +0000554 * ospfd md5 buffer copying fix (Greg Troxel)
paul8bd9c712002-12-13 21:05:16 +0000555 * ospfd md5 sequence number derived from time()
paulab836aa2002-12-13 21:19:02 +0000556 * RIPv1 fixes and improvements (John Hay)
557 * link state detection (linux) ([zebra 12269])
558 * Generic PtP and RFC3021 interface addressing support
559 (Frank van Maarseveen)
paul0efa4d52002-12-13 21:55:43 +0000560 * Michal Ludvig <michal@logix.cz>:
561 [zebra 16525] PATCH: Bugfixes for KAME systems
562 * Kevin C Miller <kevinm@andrew.cmu.edu>
563 [zebra 16681] OSPF NSSA Patches
564 * Yon Uriarte <havanna_moon@gmx.net>
565 [zebra 16671] [PATCH] CLI extensions
paula8959012002-12-13 21:59:26 +0000566 * Masahiko Endo: [zebra 15475] - MPLS-TE docs
paul4fc01e62002-12-13 20:49:00 +0000567
paul718e3742002-12-13 20:15:29 +00005682002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
569
570 * zebra-0.93 released.
571
5722002-06-28 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
573
574 * update-autotools: Change file name from update-auto-tools.sh.
575
5762002-06-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
577
578 * update-auto-tools.sh: Add a new script to clean up build
579 environment.
580
5812002-06-18 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
582
583 * Shift to the latest build environment autoconf-2.53 and
584 automake-1.6.2.
585
5862001-10-22 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
587
588 * Integrate Glen Turner <glen.turner@aarnet.edu.au>'s pid option.
589
5902001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
591
592 * zebra-0.92a released.
593
5942001-08-19 "Peter Galbavy" <peter.galbavy@knowtion.net>
595
596 * configure.in: SNMP library check problem fix when the library is
597 installed under /usr/local/lib.
598
5992001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
600
601 * zebra-0.92 released.
602
6032001-04-22 Kunihiro Ishiguro <kunihiro@zebra.org>
604
605 * configure.in (LIBPAM): Use ZEBRA_AC_C_BIGENDIAN to avoid a
606 warning.
607 (IF_METHOD): Use test -r instead of AC_CHECK_FILE to avoid
608 warnings.
609
610 * config.guess: Update to 2000-11-10 version.
611
6122001-04-11 Kunihiro Ishiguro <kunihiro@zebra.org>
613
614 * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER to
615 detect in_pktinfo structure. Suggested by: Vlad Lungu
616 <vlad@rls.roknet.ro>.
617
6182001-03-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
619
620 * configure.in: Add check for structure in_pktinfo.
621
6222001-02-07 "Bjoern A. Zeeb" <bzeeb+zebra@zabbadoz.net>
623
624 * configure.in (USE_PAM): Fix PAM library detection code.
625
6262001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
627
628 * zebra-0.91 is released.
629
6302001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
631
632 * configure.in: Remove guile related definition.
633
6342001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
635
636 * configure.in (ac_cv_htonl_works): HAVE_REPAIRABLE_HTONL is
637 removed. htonl should work fine on any platform.
638
6392001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
640
641 * configure.in: Remove --enable-oldrib option.
642
643 * acconfig.h: OLD_RIB definition is removed.
644
645 * zebra-0.90 is released.
646
647 * configure.in (LIBS): Add check for sun_len field in struct
648 sun_len.
649
6502001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
651
652 * Makefile.am: Include init/redhat files to distribution.
653
6542001-01-07 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
655
656 * configure.in: check libm.a for BGPd compile error.
657 AC_CHECK_LIB(m, main) was added.
658
6592000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
660
661 * configure.in: --enable-unixdomain becomes default. Add
662 --enable-tcp-zebra for TCP/IP communication between protocol
663 daemon and zebra.
664
665 * COPYING.LIB: Added for lib/getopt.c, lib/getopt.h,
666 lib/getopt1.c, lib/md5-gnu.h, lib/md5.c, lib/regex-gnu.h,
667 lib/regex.c.
668
669 * Makefile.am (dist-hook): Include tools/*.cgi to distribution.
670
6712000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
672
673 * configure.in (MULTIPATH_NUM): --enable-multipath=ARG specify
674 multipath number. ARG must be digit.
675
6762000-12-11 Kunihiro Ishiguro <kunihiro@zebra.org>
677
678 * configure.in: Add --enable-newrib for test new RIB code.
679
6802000-11-25 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
681
682 * configure.in, config.h.in: Add check for libutil.h and
683 setproctitle().
684
6852000-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
686
687 * configure.in: Add --enable-nssa for OSPF NSSA option.
688
689 * acconfig.h: Define HAVE_NSSA.
690
6912000-10-25 "Bjoern A. Zeeb" <bzeeb+zebra@zabbadoz.net>
692
693 * configure.in: pam_misc is only linked when the platform is
694 GNU/Linux.
695
6962000-10-24 Arkadiusz Miskiewicz <misiek@pld.org.pl>
697
698 * configure.in (LIBS): Add check for crypto library. test x`ls
699 ${ac_snmp}` is replaced with sipmle test -f.
700
7012000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
702
703 * configure.in: Add --enable-unixdomain option. This will be
704 default behavior in zebra-0.90.
705
7062000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
707
708 * zebra-0.89 is released.
709
7102000-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
711
712 * configure.in: Add check for Intel CPU for Solaris on x86 check.
713
7142000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
715
716 * configure.in: Add check for getifaddrs().
717 Set AM_INIT_AUTOMAKE version to 0.89.
718
7192000-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
720
721 * config.guess: Update to the latest version.
722
723 * config.sub: Likewise
724
7252000-09-14 David Lipovkov <dlipovkov@OpticalAccess.com>
726
727 * REPORTING-BUGS: New file is added.
728
7292000-08-27 itojun@iijlab.net
730
731 * configure.in: Add ncurses library check when --enable-vtysh is
732 specified.
733
7342000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
735
736 * configure.in: Add check for readline/history.h.
737
738 * acconfig.h: Remove pthread related variables.
739
740 * configure.in: Add --with-libpam option for vtysh PAM
741 authentication. Remove --disable-pthread because we don't support
742 pthread.
743
7442000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
745
746 * zebra-0.88 is released.
747
748 * configure.in: Add Solaris -lcurses for vtysh.
749
7502000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
751
752 * configure.in: Add check for ncurses for compiling on Solaris.
753
7542000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
755
756 * configure.in: Add check for libreadline when --enable-vtysh is
757 specified.
758
7592000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
760
761 * configure.in: Add AC_DEFINE(OPEN_BSD). When OS is OpenBSD
762 interface method is if_ioctl.o
763
7642000-07-09 Chris Dunlop <chris@onthe.net.au>
765
766 * acconfig.h: Add HAVE_BROKEN_ALIASES.
767
768 * configure.in: Add --enable-broken-aliases.
769
7702000-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
771
772 * Set version to zebra-0.87.
773
7742000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
775
776 * configure.in: Remove --enable-mpls-vpn. Now MPLS-VPN support is
777 default.
778
779 * Set version to zebra-0.87-pre
780
781 * Makefile.am: Likewise.
782
7832000-04-27 Kunihiro Ishiguro <kunihiro@zebra.org>
784
785 * Set version to 0.86.
786
7872000-03-21 Kunihiro Ishiguro <kunihiro@zebra.org>
788
789 * Set version to 0.85b for ospfd test.
790
7912000-03-20 Kunihiro Ishiguro <kunihiro@zebra.org>
792
793 * Set version to 0.85a for ospfd test.
794
7952000-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
796
797 * Set version to 0.85.
798
7992000-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
800
801 * Makefile.in: Regenerated by patched automake for fixing "make
802 clean" problem on FreeBSD.
803
8041999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
805
806 * Set version to 0.83a. This is for *BSD static route lookup
807 problem.
808
8091999-12-06 Kunihiro Ishiguro <kunihiro@zebra.org>
810
811 * Set version to 0.83.
812
8131999-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
814
815 * Set version to 0.82.
816
8171999-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
818
819 * aczebra.m4: New file added.
820
8211999-11-21 Michael Handler <handler@sub-rosa.com>
822
823 * configure.in (LIBS): Add sa_len check of sockaddr.
824
825 * acconfig.h: Add HAVE_SA_LEN.
826
8271999-11-12 Kunihiro Ishiguro <kunihiro@zebra.org>
828
829 * version.h: Update version to zebra-0.81b for bgpd test.
830
8311999-11-09 Kunihiro Ishiguro <kunihiro@zebra.org>
832
833 * configure.in: Add --enable-mbgp.
834
8351999-11-05 Kunihiro Ishiguro <kunihiro@zebra.org>
836
837 * Makefile.am (EXTRA_DIST): Add TODO to the distribution.
838
8391999-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
840
841 * TODO: New file is added.
842
8431999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
844
845 * version.h: Update version to zebra-0.81a for ospfd test.
846
8471999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
848
849 * configure.in: New option --enable-snmp is added.
850
8511999-10-24 Kunihiro Ishiguro <kunihiro@zebra.org>
852
853 * version.h: Update version to zebra-0.80.
854
8551999-10-21 Kunihiro Ishiguro <kunihiro@zebra.org>
856
857 * version.h: Update version to zebra-0.80-pre3
858
8591999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
860
861 * configure.in (LIBS): SNMP check is done by ucd-snmp/asn1.h.
862
8631999-10-10 Peter Galbavy <Peter.Galbavy@knowledge.com>
864
865 * configure.in: Add support of OpenBSD.
866
8671999-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
868
869 * version.h: Update version to zebra-0.80-pre2.
870
8711999-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
872
873 * version.h: Update version to zebra-0.80-pre. From this version,
874 access-list and prefix-list's name space is divided into IPv4 and
875 IPv6.
876
8771999-09-17 Kunihiro Ishiguro <kunihiro@zebra.org>
878
879 * version.h: For test recent fixes Set version to zebra-0.79a.
880
8811999-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
882
883 * version.h: zebra-0.79 is out.
884
8851999-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
886
887 * version.h: For ospfd's virtual link test. Set version to 0.78h.
888
8891999-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
890
891 * version.h: For ospfd test. Set version to 0.78g.
892
8931999-09-05 Kunihiro Ishiguro <kunihiro@zebra.org>
894
895 * version.h: For internal test of ospfd. Set version to 0.78f.
896
8971999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
898
899 * version.h: To test ospfd's fix, set version to 0.78e.
900
9011999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
902
903 * version.h: To test ospfd's area related bug fix, set version
904 to 0.78d.
905
9061999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
907
908 * version.h: To test ospfd, set version to 0.78c.
909
9101999-08-31 Janos Farkas <chexum@shadow.banki.hu>
911
912 * Many misspelling correction.
913
9141999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
915
916 * version.h: To test ospfd, set version to 0.78b.
917
9181999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
919
920 * configure.in (LIBS): Add UCD-SNMP include path check.
921
9221999-08-31 Lars Fenneberg <lf@elemental.net>
923
924 * configure.in: The logic which detects the UCD-SNMP library
925 should first check in the default system locations for the library
926 and then in /usr/local.
927
9281999-08-27 itojun@iijlab.net
929
930 * configure.in (LIBS): Fix problem about libsnmp.a check.
931
9321999-08-26 kay <kay@v6.access.co.jp>
933
934 * configure.in (CFLAGS): Add <sys/socket.h> to check socklen_t.
935
9361999-08-24 VOP <vop@unity.net>
937
938 * filter.c: Include "sockunion.h".
939 plist.c: Likewise.
940 table.c: Likewise.
941
9421999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
943
944 * configure.in: Add netinet6/in6.h check.
945
9461999-08-21 Masaki Minami <masaki@minami.org>
947
948 * BSD/OS 4.0 porting.
949
9501999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
951
952 * configure.in: Add --enable-netlink option to force to use Linux
953 netlink interface.
954 (CFLAGS): Add ucd-snmp library check.
955
956 * acconfig.h: If socklen_t is not defined, typedef int to
957 socklen_t.
958
9591999-08-15 Arkadiusz Miskiewicz <misiek@misiek.eu.org>
960
961 * configure.in: When --enable-ipv6 specified, then only kernel
962 version is checked.
963
9641999-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
965
966 * configure.in: Add GNU libc 2.1 check.
967
9681999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
969
970 * configure.in: Fix privious Linux IPv6 check changes.
971
9721999-08-02 Arkadiusz Miskiewicz <misiek@misiek.eu.org>
973
974 * configure.in: Improve Linux IPv6 feature check.
975
9761999-07-29 Rick Payne <rickp@rossfell.co.uk>
977
978 * Changed route-maps to behave in a more cisco-like fashion
979
9801999-07-27 Gerhard Poul <gpoul@gnu.org>
981
982 * SERVICES: New file added.
983
9841999-07-12 itojun@iijlab.net
985
986 * configure.in: Add check for getaddrinfo. Improve Kame related
987 library check.
988
9891999-07-07 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
990
991 * configure.in, acconfig.h: Add check for FreeBSD 3.2.
992
9931999-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
994
995 * configure.in: Delete check for netinet/ip6.h.
996
9971999-06-30 Gerhard Poul <gpoul@gnu.org>
998
999 * README: remixed the old files and added some new parts.
1000 moved some INSTALL stuff into INSTALL file.
1001 moved some other stuff to doc/zebra.texi
1002
10031999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1004
1005 * configure.in (LIBS): Add libresolv check.
1006 Change --enabe-all-in-one option to --enable-one-vty.
1007
10081999-06-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1009
1010 * configure.in: Add --enabe-all-in-one option.
1011
10121999-06-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1013
1014 * configure.in: Add socklen_t check.
1015
10161999-06-16 Gerhard Poul <gpoul@gnu.org>
1017
1018 * Many compile warnings fixed.
1019
10201999-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1021
1022 * configure.in: Change message from Linux 2.2.X IPv6 to Linux IPv6.
1023 OpenBSD (NRL) check is enabled.
1024
10251999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1026
1027 * configure.in (LIBS): Add crypt library check.
1028
10291999-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1030
1031 * configure.in: Add sin6_scope_id in struct sockaddr_in6 check.
1032
10331999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1034
1035 * Set version to 0.63 for first beta package.
1036
10371999-04-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1038
1039 * guile.m4: Added from guile package.
1040
10411999-04-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1042
1043 * Set version to 0.60 for beta package preparation.
1044
10451999-04-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1046
1047 * Makefile.am: Add noninst_LIBRARIES each directory's Makefile.am.
1048 This change is for linking these libraries to guile.
1049
10501999-04-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1051
1052 * configure.in (LIBS): Add struct rt_addrinfo check.
1053
10541999-04-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1055
1056 * configure.in: AC_STDC_HEADERS added.
1057
10581999-03-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1059
1060 * Add dependencies to each directory's Makefile.am.
1061
10621999-03-02 Peter Galbavy <Peter.Galbavy@knowledge.com>
1063
1064 * reworked include file structure, and configure so that all
1065 source files get all system-dependent include files by including
1066 <zebra.h> which is really lib/zebra.h. This means that the
1067 different programs include files are now available as #include
1068 "zebra/zebra.h" - note the use of quotes, not <> as delimiters.
1069
1070 In practical terms, if I haven't really screwed up, the main file
1071 that maintainers for other OSes have to change is lib/zebra.h for
1072 all the conditional includes etc.
1073
1074 * added --disable-pthread for those systems that seem to have
1075 POSIX threads, but do not work. OpenBSD 2.4+ is like that just
1076 now. Changed all occurance of #ifdef PTHREAD to use HAVE_PTHREAD
1077 instead.
1078
10791999-02-24 <kunihiro@zebra.org>
1080
1081 * configure.in: update to AC_PREREQ(1.13).
1082 Change message from Linux 2.1.x to Linux 2.2.x.
1083 * Added ospf6d directory support.
1084
10851999-02-22 Peter Galbavy <Peter.Galbavy@knowledge.com>
1086
1087 * added a "log" element to the BGPd peer structure, enabling us to
1088 start thinging about a log stream per peer. This is currently
1089 ignored by the wrapper code, but developers should try to use the
1090 "appropriate" ZLOG stream. Documentation will follow, when the
1091 real routines start to exist.
1092
1093 The current plan is to use a copy of the BSD syslog() routines and
1094 replace the syslog library function with our own. I will need
1095 feedback from users of other platforms as this work is done to see
1096 if all is well elsewhere.
1097
1098 * preliminary work on zlog() library. directly replaces syslog()
1099 currently with zlog(ZLOG *, ...) where the new first argument
1100 is a pointer to a ZLOG structure (defined in lib/log.h) and will
1101 encapsulate all the information necessary to maintain multiple
1102 logging streams.
1103
11041999-02-19 Peter Galbavy <Peter.Galbavy@knowledge.com>
1105
1106 * added vsnprintf() macro to lib/str.h if required and removed
1107 #ifdef SUNOS_5 dependency on it
1108
11091999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1110
1111 * syslog support added
1112
11131999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1114
1115 * configure.in: Add daemon function check.
1116
11171999-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1118
1119 * configure.in: Add --disable-ipv6, --disable-zebra,
1120 --disable-bgpd, --disable-ripd, --disable-ripngd, --disable-ospfd
1121 options to configure.
1122
11231998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1124
1125 * configure.in: Check /usr/inet6/lib/libinet6.a exists or not.
1126
11271998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1128
1129 * configure.in: Comment out FreeBSD's libc_r detect section. At
1130 this moment it doesn't work correctly with zebra.
1131
1132 Netlink interface is only enabled when Linux kernel version is
1133 upper than 2.1.0.
1134
11351998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1136
1137 * Hydrangea is now called KAME, so change all defines.
1138
11391998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1140
1141 * configure.in: ifaliasreq check added.
1142
11431998-08-12 Katsuhiro Kondou <kondou@nec.co.jp>
1144
1145 * Patch is applied for compile under EWS4800
1146
11471998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1148
1149 * configure.in: delete old mtu_method check.
1150
1151 * doc/zebra.texi (Kernel interface): chapter `Kernel interface' added
1152
11531998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1154
1155 * configure.in: add new netlink check for GNU/Linux
1156
11571998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1158
1159 * doc/zebra.texi: Update Linux netlink chapter.
1160
11611998-05-18 Yamashita TAKAO <jargon@lares.dti.ne.jp>
1162
1163 * config.h.in: define PTHREAD if work on Solaris 2.6
1164 why delete the definition? I miss?
1165
11661998-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1167
1168 * configure.in: add net/if.h header check.
1169
11701998-05-02 SeonMeyong HEO <seirios@Matrix.iri.co.jp>
1171
1172 * zebra.tex,archfig.tex,zebra.sty: Manual file is added.
1173 * zebra.texi: Modify Introduction text.
1174 * RIPngd.c: Patch Hydrangea code.
1175
11761998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1177
1178 * .cvsignore: added.
1179
1180 * Makerule.in: is gone.
1181 * Makefile.am: Now we use automake to generate Makefile.in
1182
11831998-03-19 Yamashita TAKAO <jargon@lares.dti.ne.jp>
1184
1185 * lib/vty.c: modified the definition of *master
1186 * lib/sockunion.c (inet_aton): add, but don't work. uum...
1187
1188
11891998-03-15 Yamashita TAKAO <jargon@lares.dti.ne.jp>
1190
1191 * configure.in: define PTHREAD if work on Solaris 2.6
1192 * config.h.in: likewise
1193 * lib/thread.c: likewise
1194 * lib/vty.c: likewise
1195
11961998-03-15 SeonMeyong HEO <seirios@Matrix.iri.co.jp>
1197
1198 * config.h.in: define INET6 if defined HAVE_IPV6 & HYDRANGEA
1199 * bgpd/: remove include <netinet6/in6.h> line.
1200 * lib/: remove include <netinet6/in6.h> line.
1201 * ripbgd/: remove include <netinet6/in6.h> line.
1202 * zebra/: remove include <netinet6/in6.h> line.
1203 * ripd/*.c: remove include <netinet6/in6.h> line.
1204 undefine IPV6 difinitions because RIPd is not worked for
1205 IPv6 protocol.
1206
1207
12081998-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1209
1210 * configure.in: Change routing socket check method from
1211 AC_TRY_COMPILE to AC_TRY_RUN because GNU libc version 2 has
1212 AF_ROUTE but over linux it's meenigless.
1213
12141998-01-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1215
1216 * config.h.in: remove err_t define.
1217
12181997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1219
1220 * configure.in (canonical): add check of IF_METHOD
1221
12221997-09-27 Kunihiro Ishiguro <kunihiro@note.digital-magic.co.jp>
1223
1224 * configure.in: add INRIA check
1225
12261997-09-25 Kunihiro Ishiguro <kunihiro@note.digital-magic.co.jp>
1227
1228 * configure.in (canonical): change ipforward_snmp.o to ipforward_proc.o
1229
12301997-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1231
1232 * configure.in: change IRDPD to NDPD
1233
12341997-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1235
1236 * INSTALL: new file
1237
12381997-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1239
1240 * config.h: add XCALLOC()
1241