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