]> git.proxmox.com Git - mirror_frr.git/blame - lib/ChangeLog
2004-09-13 Jose Luis Rubio <jrubio@dit.upm.es>
[mirror_frr.git] / lib / ChangeLog
CommitLineData
630e4807 12004-08-31 David Wiggins <dwiggins@bbn.com>
2
3 * hash.c (hash_iterate): Save next pointer before calling
4 procedure, so that iteration works even if the called procedure
5 deletes the hash backet.
6
7 * linklist.h (listtail): new macro, not yet used.
8
34553cc3 92004-08-27 Hasso Tepper <hasso at quagga.net>
10
11 * command.c: Install "terminal length" commands only if vty is used.
12 Vtysh will handle it itself.
13
afa43b23 142004-08-26 Greg Troxel <gdt@fnord.ir.bbn.com>
15
16 * sockopt.h: Define method-independent macro for callers of
17 get_ifindex to use for cmsg length.
18
efba6ce9 192004-08-19 Paul Jakma <paul@dishone.st>
20
21 * zebra.h: add MAX and MIN defines (eg for ospf6d)
22
e6822768 232004-08-19 Paul Jakma <paul@dishone.st>
24
25 * sockopt.c: include sockopt.h
26 rename some of the _pktinfo_ functions to _ifindex, where that is
27 their purpose.
28 (getsockopt_ipv6_pktinfo_ifindex) renamed to
29 getsockopt_ipv6_ifindex.
30 (setsockopt_ipv4_pktinfo) renamed to setsockopt_ipv4_ifindex
31 (setsockopt_pktinfo) update with previous and add comment re
32 AF_INET portability.
33 (setsockopt_ifindex) generic ifindex function ala
34 setsockopt_pktinfo.
35 (getsockopt_ipv4_pktinfo_ifindex) renamed to
36 getsockopt_ipv4_ifindex.
37 (getsockopt_ipv4_ifindex) rejiggling to reduce repeated
38 ifdef/elses. pktinfo case forgot to set ifindex.
39 (getsockopt_pktinfo_ifindex) renamed to
40 getsockopt_ifindex. update some calls to renamed functions.
41 * sockopt.h: Update renamed exported functions
42 Rename the CMSG_SIZE macros to IFINDEX.
43 Guard IPv4 PKTINFO in a conditional define.
44
c0618de6 452004-08-18 Paul Jakma <paul@dishone.st>
46
47 * vty.c: (vty_serv_un) set unix vty socket to nonblocking
48 to prevent inadvertent blocking of daemons by use of
49 vtysh. TODO: disentangle manual paging from the buffer_write
50 path so that unix vty can use this path too and be reliable.
51
33f92320 522004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com>
53
54 * sockopt.c (getsockopt_ipv4_pktinfo_ifindex): Make this compile
55 on NetBSD, and add comments to make it less confusing. Change the
56 sense of the SUNOS_5 test to make parallel structure between the
57 variables and the code.
58
4f7baa0e 592004-07-23 Paul Jakma <paul@dishone.st>
60
61 * sockopt.h: Add SOPT_SIZE_CMSG_PKTINFO{_IPV{4,6}} define, for
62 sizeof pktinfo as appropriate, to be used when allocating msg
63 buffers. export setsockopt_pktinfo() and
64 getsockopt_pktinfo_ifindex()
65 * sockopt.c: (setsockopt_pktinfo_ifindex) new function to portably
66 set received ifindex sock option.
67 (getsockopt_pktinfo_ifindex) portably retrieve ifindex.
68 (getsockopt_cmsg_data) retrieve indicated control info from
69 message header.
70 (getsockopt_ipv6_pktinfo_ifindex) ipv6 version of above.
71 (setsockopt_ipv4_pktinfo) v4 version
72 (setsockopt_pktinfo) the exported version
73 (getsockopt_ipv4_pktinfo_ifindex) v4 specific version
74 (getsockopt_pktinfo_ifindex) the exported version
75
05c447dd 762004-07-14 Paul Jakma <paul@dishone.st>
77
78 * sigevent.c: (quagga_signal_handler) add a global caught flag, set
79 the flags to a constant rather increment to be kinder.
80 (quagga_sigevent_process) new function, to do core of what
81 quagga_signal_timer did. dont block signals at all as sig->caught
82 is volatile sig_atomic_t and should be safe to access from signal
83 and normal contexts. The signal blocking is unneeded paranoia, but
84 is left intact under an ifdef, should some platform require it.
85 Check global caught flag before iterating through array.
86 (quagga_signal_timer) nearly everything moved to
87 quagga_sigevent_process. Left in under ifdef, in case some
88 platform could use a regular timer check for signals.
89 * sigevent.h: quagga_sigevent_process declaration.
90 * thread.c: (thread_fetch) check for signals at beginning of
91 scheduler loop, check for signals if select returns EINTR.
92
b7797131 932004-07-13 Greg Troxel <gdt@poblano.ir.bbn.com>
94
95 * sigevent.c: Don't block SIGTRAP and SIGKILL. Blocking SIGTRAP
96 confuses gdb, at least on NetBSD 2.0_BETA, where the block
97 succeeds.
98
5510e83b 992004-07-09 Paul Jakma <paul@dishone.st>
100
101 * Merge Kunihiro's 'show route-map' change and add
102 compatibility aliases for route-map continue
b9790b34 103 * jhash.{c,h}: New files. Bob Jenkins' public domain hashing
104 function, as implemented in linux kernel by David Miller.
5510e83b 105
b06c14f2 1062004-07-09 Juris Kalnins <juris@mt.lv>
107
108 * if.c: (if_cmp_func) fix for interface names where name is same,
109 but one has no number, eg "devtyp" and "devtyp0".
110
87efd646 1112004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
112
113 * Makefile.am: Make libzebra shared.
114
138ce75f 1152004-06-21 Paul Jakma <paul@dishone.st>
116
117 * ChangeLog: fix my last update config.h -> zebra.h ;)
118 * zebra.h: Fix gcc check.
119
02ff83c5 1202004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
121
122 * filter.c: (access_list_remark_cmd) buffer_putstr doesnt need cast
123 to u_char. (ipv6_access_list_remark_cmd) ditto.
124 if.c: ditto
125 * network.c: (readn/writen) pointer arg should be type u_char.
126 * plist.c: needs to include stream.h, not declare stream functions
127 internally.
128 (various) Add static qualifier to internal functions.
129 (prefix_list_type_str) extraneous breaks in switch statement.
130 (ip_prefix_list_description_cmd) buffer_putstr doesnt need cast
131 * stream.h: depends on plist.h and export stream_put_prefix
132 * vty.c: (vty_<telnet option build functions>) should use
133 unsigned char, telnet options are 0 -> 255.
134 * zclient.c: various u_char<->char type cleanups.
135 * zebra.h: Having to define CMSG_* can apply to more than just
136 BSDI_NRL.
137
51a8798e 1382004-06-09 Paul Jakma <paul@dishone.st>
139
138ce75f 140 * zebra.h: __attribute__ is a gcc'ism
51a8798e 141
5228ad27 1422004-06-04 Paul Jakma <paul@dishone.st>
143
144 * type mismatch fixes
145
6708fa3c 1462004-05-18 Hasso Tepper <hasso@estpak.ee>
147
148 * pqueue.[c|h]: Added as part of ospf6d merge from Zebra repository.
149
0a589359 1502004-05-08 Paul Jakma <paul@dishone.st>
151
152 * zclient.c (zapi_ipv4_route) Follow Sowmini's lead and describe
153 message format.
154
1552004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com>
156
157 * zclient.c: (zapi_ipv4_add) collapsed into zapi_ipv4_route
158 (zapi_ipv4_delete) ditto.
159 (zapi_ipv4_route) add/delete a route by way of cmd arg.
160 (zapi_ipv6_add) collapsed into zapi_ipv6_route.
161 (zapi_ipv6_delete) ditto.
162 (zapi_ipv6_route) add/delete a route by way of cmd arg.
163 (zebra_interface_address_delete_read) collapsed into
164 zebra_interface_address_read.
165 (zebra_interface_address_delete_read) ditto.
166 (zebra_interface_address_read) read address add/delete messages
167 by way of type argument. Describe command message format.
168 (zebra_interface_add_read) Unconditionally read new ifmtu6 field.
169 Describe command message format.
170 (zebra_interface_state_read) Unconditionally read new ifmtu6 field.
171 (zclient_redistribute_set) Collapsed into zclient_redistribute
172 (zclient_redistribute_unset) ditto
173 (zclient_redistribute) set/unset redistribution.
174 (zclient_redistribute_default_set) Collapsed into
175 zclient_redistribute_default.
176 (zclient_redistribute_default_unset) ditto.
177 (zclient_redistribute_default) Redistribute default set/unset.
178 * zclient.h: delete zapi_ipv{4,6}_add, zapi_ipv{4,6}_delete. Add
179 zapi_ipv{4,6}_route. delete zclient_redistribute_set/unset. Add
180 zclient_redistribute. Ditto for
181 zclient_redistribute_default_{set/unset}.
182
4a7aac1b 1832004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com>
184
185 * if.h: Add mtu6 field to struct interface, IPv6 MTU may differ
186 from IPv4, and Solaris treats the MTU's differently.
187 Add connected_add_by_prefix, for use by later patch.
188 * if.c: (connected_add_by_prefix) Add prefix to connected list.
189 (if_flag_dump) Solaris: Dump IFF_IPv4/6 flag
190 (if_dump) Dump mtu6 flag, for HAVE_IPV6.
22528299 191 * command.c: (sockunion_getsockname) use socklen_t for len.
192 (sockunion_getpeername) ditto.
0a589359 193
31fcdd3f 1942004-04-21 Boris Kovalenko <boris@tagnet.ru>
195
196 * daemon.c: (daemon) fix check for error return from setsid
197
c49b3069 1982004-01-19 Paul Jakma <paul@dishone.st>
199
200 * sigevent.{c,h}: New files, implement event handled signals.
201 see signal_init() in sigevent.h.
202
c32e1b57 2032003-12-23 Vincent Jardin <jardin@6wind.com>
204
205 * {command.c, memory.c, vty.c, zebra.h}: Add isisd support
206
3dbf9969 2072003-12-22 Greg Troxel <gdt@fnord.ir.bbn.com>
208
209 * vty.c (vty_use_backup_config): Don't free filenames before using
210 them for unlink.
211
54aba54c 2122003-08-20 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
213
214 * command.c: Fix <cr> display problem for command line
215 description
216
e9af5c78 2172003-05-24 Anil Madhavapeddy
218
219 * (sockunion.c): Incorrect bounds specified in sockunion_log()
220
445f1435 2212003-05-08 Sergiy Vyshnevetskiy <serg @ vostok.net>
222
223 * vty.c: -A option
224
2252003-04-19 Hasso Tepper <hasso@estpak.ee>
226
227 * rip_routemap.c: sync daemon's route-map commands to have same
228 syntax
229
718e3744 2302002-09-28 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
231
232 * vty.c (vty_flush): One line more on vty.
233
2342002-09-27 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
235
236 * vector.c (vector_lookup): Add new function.
237
2382002-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
239
240 * thread.c (timeval_adjust): Fix unconditional crush due to
241 FreeBSD's select() system call timeval value check.
242
2432002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
244
245 * zebra-0.93 released.
246
2472002-06-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
248
249 * if.c (ifc_pointopoint): Add ifc_pointopoint() accoding to Frank
250 van Maarseveen's suggestion.
251
2522002-06-18 Kunihiro Ishiguro <kunihiro@zebra.org>
253
254 * command.c: Change bcopy() to memcpy().
255
2562001-12-12 Kunihiro Ishiguro <kunihiro@zebra.org>
257
258 * command.c (config_password): Fix host.password clear bug.
259 Reported by Wang Jian <lark@linux.net.cn>.
260
2612001-08-29 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
262
263 * thread.c (thread_should_yield): New function to check thread
264 should yeild it's execution to other thread. Suggested by: Rick
265 Payne <rickp@ayrnetworks.com>
266
2672001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
268
269 * thread.c (thread_timer_cmp): Rewrite function.
270
271 * hash.c: Add hash_get(). Change hash_pull() to hash_release().
272
2732001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
274
275 * zebra-0.92a released.
276
2772001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
278
279 * zebra-0.92 released.
280
2812001-08-12 Akihiro Mizutani <mizutani@dml.com>
282
283 * prefix.c (netmask_str2prefix_str): Convert "1.1.0.0 255.255.0.0"
284 string to "1.1.0.0/16".
285
2862001-08-10 Kunihiro Ishiguro <kunihiro@zebra.org>
287
288 * filter.c (access_list_lookup): access_list_lookup's first
289 argument is changed from address family to AFI.
290
291 * plist.c: (prefix_list_lookup): Likewise.
292
2932001-07-27 Akihiro Mizutani <mizutani@dml.com>
294
295 * plist.c: ge and le display order is changed. Old compatible
296 rule (len <= ge-value <= le-value) is removed.
297
2982001-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
299
300 * prefix.h: Temporary fix for alignment of prefix problem.
301
3022001-06-21 Kunihiro Ishiguro <kunihiro@zebra.org>
303
304 * prefix.h (struct prefix): Remove safi and padding field.
305 (struct prefix_ipv4): Likewise.
306 (struct prefix_ipv6): Likewise.
307 (struct prefix_ls): Likewise.
308 (struct prefix_rd): Likewise.
309
310 * command.h (enum node_type): Preparation for BGP new config.
311
312 * vty.c (vty_end_config): Likewise.
313
3142001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
315
316 * routemap.c (route_map_rule_delete): Call func_free when
317 route-map rule is deleted.
318
3192001-06-14 "Akihiro Mizutani" <mizutani@dml.com>
320
321 * routemap.c (route_map_index_lookup): Prevent to use deny and
322 permit for same route-map sequence.
323
3242001-04-12 Kunihiro Ishiguro <kunihiro@zebra.org>
325
326 * vty.c (vty_read_config): Fix warning.
327
3282001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
329
330 * command.c (IPV6_PREFIX_STR): Add '.' and '%' for IPv6 address
331 strings.
332
3332001-03-07 Kunihiro Ishiguro <kunihiro@zebra.org>
334
335 * zebra.h (_XPG4_2): Define _XPG4_2 and __EXTENSIONS__ for
336 CMSG_FIRSTHDR.
337
3382001-03-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
339
340 * zebra.h (struct in_pktinfo): structure in_pktinfo declaration.
341
3422001-02-19 Kunihiro Ishiguro <kunihiro@zebra.org>
343
344 * memory.c (memory_list_lib): Add MTYPE_NEXTHOP for "show memory
345 lib" member.
346
3472001-02-13 Matthew Grant <grantma@anathoth.gen.nz>
348
349 * vty.c (vty_read_config): Revert check of integrate_default when
350 VTYSH is defined.
351
3522001-02-13 Kunihiro Ishiguro <kunihiro@zebra.org>
353
354 * vty.c (vty_read_config): Do not check integrate_default. That
355 should be used only by vtysh.
356
3572001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
358
359 * vty.c (vty_serv_un): Set umask 0077.
360 (vty_read_config): Stat for vtysh Zebra.conf, if found startup and
361 wait for boot configuration.
362
363 * if.c (if_lookup_address): Make it smart implementation.
364
365 * sockopt.c (setsockopt_multicast_ipv4): Set up a multicast socket
366 options for IPv4 This is here so that people only have to do their
367 OS multicast mess in one place rather than all through zebra,
368 ospfd, and ripd .
369
3702001-02-04 Akihiro Mizutani <mizutani@dml.com>
371
372 * plist.c (vty_prefix_list_install): Even when argument is
373 invalid, new memory is allocated. Now memory allocation is done
374 after argument check.
375
3762001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
377
378 * zebra-0.91 is released.
379
3802001-01-31 Akihiro Mizutani <mizutani@dml.com>
381
382 * vty.c (vty_login): Add vty login command.
383
3842001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
385
386 * vty.c (vty_reset): Close accept socket.
387
3882001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
389
390 * memory.h (enum): MTYPE_ATTR_TRANSIT is added for unknown transit
391 attribute.
392
3932001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
394
395 * zclient.c (zebra_interface_address_add_read): Fetch interface
396 address flag.
397 (zebra_interface_address_delete_read): Likewise.
398
3992001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
400
401 * table.c (route_node_match_ipv4): Utility function for IPv4
402 address lookup.
403 (route_node_match_ipv6): Utility function for IPv4 address lookup.
404
4052001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
406
407 * if.c: Delete RIP_API part until new implementation comes out.
408
4092001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
410
411 * hash.h (struct Hash): Rename alloc to count. Change type to
412 unsigned long.
413
414 * stream.c (stream_getc_from): New function.
415 (stream_getw_from): Likewise.
416
417 * zebra.h (ZEBRA_FLAG_STATIC): Add new flag for persistent route.
418
4192001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
420
421 * flap.c: File is removed.
422
423 * flap.c: Likewise.
424
425 * roken.h: Likewise.
426
427 * buffer.c (buffer_new): Remove type option to buffer_new().
428
4292001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
430
431 * zclient.c (zapi_ipv4_delete): Remove OLD_RIB part.
432
4332001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
434
435 * zebra-0.90 is released.
436
437 * command.c: Update Copyright year.
438
4392001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
440
441 * if.c (if_create): Register connected_free() function for
442 deletion.
443 (if_delete): Free connected information when the interface is
444 deleted.
445 (if_lookup_by_index): Fix argument type from int to unsigned int.
446 (connected_add): Keep list in order if old info found, essential
447 for repeatable operation in some daemons.
448
4492001-01-09 endo@suri.co.jp (Masahiko Endo)
450
451 * vty.c (vty_flush): When vty->statis is VTY_CLOSE do not add vty
452 read thread.
453
4542001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
455
456 * filter.c (access_list_delete): Access-list name is not freed.
457
458 * plist.c (prefix_list_delete): Prefix-list name is not freed.
459
4602000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
461
462 * zclient.c (zclient_start): Change to use UNIX domain
463 socket for zebra communication.
464
465 * vector.c (vector_init): vector_alloc and vector_data_alloc is
466 removed. All memory allocation count should be maintained by
467 XMALLOC and XFREE macros.
468
4692000-12-28 Kunihiro Ishiguro <kunihiro@zebra.org>
470
471 * zebra.h (ZEBRA_NEXTHOP_IFINDEX): Define ZEBRA_NEXTHOP_* values.
472
4732000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
474
475 * zebra.h (ZEBRA_ERR_RTEXIST): Make zebra error code to negative
476 value.
477
4782000-12-25 "Wataru Uno" <wataru@po.ntts.co.jp>
479
480 * vty.c (vtysh_read): Don't allocate new buffer because buffer is
481 allocated in vty_new ().
482
4832000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
484
485 * memory.h (enum): Add MTYPE_AS_FILTER_STR.
486
487 * command.c (config_write_terminal): Display "end" at the end of
488 configuration.
489
490 * plist.c (vty_prefix_list_install): Use AF_INET to determine
491 lenum length.
492
4932000-12-13 "Wataru Uno" <wataru@po.ntts.co.jp>
494
495 * buffer.c (buffer_flush_vty): If IOV_MAX defined in the System,
496 then all lines write by IOV_MAX.
497
4982000-12-12 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
499
500 * command.c (config_write_file): Robust method for writing
501 configuration file and recover from backing up config file.
502
5032000-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
504
505 * smux.c (smux_connect): More fail check.
506 (smux_trap): When SMUX connection is not established, do nothing.
507
5082000-11-28 Gleb Natapov <gleb@nbase.co.il>
509
510 * thread.c (thread_fetch): Execut event list first. Old event
511 list is renamed to ready list. With this change, event thread is
512 executed before any other thread.
513
514 * thread.h (struct thread_master): Add ready list.
515
5162000-11-28 Kunihiro Ishiguro <kunihiro@zebra.org>
517
518 * linklist.c (listnode_add_after): Add node right after the
519 listnode pointer.
520
5212000-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
522
523 * smux.h: Pass struct variable to WriteMethod.
524
5252000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
526
527 * if.c (if_lookup_address): When looking up interface with IP
528 address, Sometimes multiple interfaces will match. Now PtP
529 interfaces prevail in such a case which seem the right thing to
530 do: There will probably also be host routes which usually prevail
531 over network routes.
532
5332000-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
534
535 * smux.c (smux_trap): SMUX trap implementation.
536
5372000-11-19 Akihiro Mizutani <mizutani@dml.com>
538
539 * plist.c: Add automatic conversion function of an old rule.
540 ex.) 10.0.0.0/8 ge 8 -> 10.0.0.0/8 le 32
541
5422000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
543
544 * zclient.c (zebra_interface_add_read): Read hardware address when
545 hw_addr_len is greater than 0.
546
5472000-11-15 Akihiro Mizutani <mizutani@dml.com>
548
549 * plist.c: The rule of "len <= ge-value <= le-value"
550 was changed to "len < ge-value <= le-value".
551
5522000-11-09 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
553
554 * memory.[ch]: Added #define and functions for ospf6d.
555
556 * log.[ch]: some platform says that the data of used va_list
557 is undefined. Changed to hold list of va_list for each
558 vsnprintf.
559
5602000-11-07 Rick Payne <rickp@rossfell.co.uk>
561
562 * memory.h (enum): Add MTYPE_COMMUNITY_REGEXP.
563
5642000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
565
566 * command.c (config_exit): Fix bug of missing break after case
567 BGP_VPNV4_NODE.
568
5692000-10-30 Kunihiro Ishiguro <kunihiro@zebra.org>
570
571 * vector.c (vector_unset): Check i is not nevative.
572
5732000-10-24 Arkadiusz Miskiewicz <misiek@pld.org.pl>
574
575 * smux.c (smux_sock): Set terminating '\0'. Check address family.
576
577 * vty.c (vty_serv_sock_addrinfo): Set terminating '\0'. Use
578 gai_strerror. Check address family.
579
5802000-10-23 Jochen Friedrich <jochen@scram.de>
581
582 * smux.c: Use linklist rather than vector.
583 (smux_getnext): A SMUX subagent has to behave as if it manages the
584 whole SNMP MIB tree itself. It's the duty of the master agent to
585 collect the best answer and return it to the manager. See RFC 1227
586 chapter 3.1.6 for the glory details :-). ucd-snmp really behaves
587 bad here as it actually might ask multiple times for the same
588 GETNEXT request as it throws away the answer when it expects it in
589 a different subtree and might come back later with the very same
590 request.
591
5922000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
593
594 * command.c (cmd_init): Log related command are only installed for
595 terminal mode.
596
5972000-10-21 Kunihiro Ishiguro <kunihiro@zebra.org>
598
599 * Makefile.am (libzebra_a_SOURCES): Remove duplicated buffer.c.
600
601 * zebra.h: Remove #warn directive.
602
6032000-10-20 Kunihiro Ishiguro <kunihiro@zebra.org>
604
605 * keychain.c (keychain_init): Register "key chain" command to
606 KEYCHAIN_NODE and KEYCHAIN_KEY_NODE.
607
608 * vty.c (vty_end_config): Fix missing vty_cinfig_unlock for other
609 CONFIG_NODE.
610
611 * command.c (config_end): Likewise.
612
613 * keychain.c (keychain_get): Key is sorted by it's identifier
614 value.
615
6162000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
617
618 * linklist.c (list_delete_all_node): Call delete function if it is
619 defined.
620
621 * command.c (cmd_execute_command_strict): Add modification for
622 vtysh.
623 (cmd_execute_command_strict): Remove first argument cmdvec because
624 it is global varibale in command.c.
625
6262000-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
627
628 * command.c (cmd_init): Install
629 copy_runningconfig_startupconfig_cmd only in terminal mode.
630
631 * linklist.c (list_delete_node): Simplify the function.
632 (listnode_lookup): Renamed from list_lookup_node.
633
6342000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
635
636 * stream.h: Undef stream_read and stream_write without
637 parenthesis.
638
639 * newlist.c: File removed.
640
641 * newlist.h: Likewise.
642
643 * linklist.c (list_new): Remove list_init(). To allocate new
644 linked list, please use list_new().
645 (listnode_add): Remove list_add_node(). To add new node to linked
646 list, please use listnode_add().
647 (list_delete_by_val): Revemove fucntion.
648
6492000-10-16 Nobuaki Tanaka <nobby@po.ntts.co.jp>
650
651 * table.c (route_table_free): Reimplement route_table_free().
652
6532000-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
654
655 * keychain.c (keychain_get): Register key_delete_func to key
656 list's delete function. Use linklist.c instead of newlist.c.
657
6582000-10-04 Akihiro Mizutani <mizutani@dml.com>
659
660 * filter.c (access_list_remark): Add access-list's remark command.
661 (no_access_list): "no access-list 100 permit any" error message
662 bug is fixed.
663
6642000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
665
666 * memory.h (enum): Add MTYPE_SOCKUNION.
667
6682000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
669
670 * zebra-0.89 is released.
671
6722000-10-01 Kunihiro Ishiguro <kunihiro@zebra.org>
673
674 * linklist.c (list_add_node_head): Delete unused function.
675 (list_add_node_tail): Likewise.
676
6772000-09-26 Kunihiro Ishiguro <kunihiro@zebra.org>
678
679 * stream.c (stream_read_unblock): Add new function for unblocking
680 read.
681
6822000-09-26 Jochen Friedrich <jochen@nwe.de>
683
684 * smux.c (smux_register): Fix bug of can't register more than one
685 MIB with SMUX.
686
6872000-09-26 Makoto Otsuka <otsuka@inl.ntts.co.jp>
688
689 * vty.c (vty_close): Fix memory leak of sb_buffer.
690 (vty_new): Likewise.
691
6922000-09-21 steve@Watt.COM (Steve Watt)
693
694 * log.h: Do not declare zlog_priority[0] variable.
695
6962000-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
697
698 * linklist.h (struct _list ): Add member cmp for compare function.
699 (struct _list ): Member up is deleted
700
7012000-09-12 David Lipovkov <dlipovkov@OpticalAccess.com>
702
703 * if.c: Include RIP_API header when RIP API is enabled.
704
7052000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
706
707 * prefix.c (prefix_free): Siplify prefix_free().
708
709 * keychain.c (key_match_for_accept): strncmp check bug is fixed.
710
7112000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
712
713 * zebra.h: Merge roken.h into zebra.h.
714
7152000-09-05 Akihiro Mizutani <mizutani@dml.com>
716
717 * routemap.c (route_map_init_vty): Install route-map command to
718 RMAP_NODE.
719
7202000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
721
722 * thread.c (thread_get_id): Remove pthread related garbage.
723
724 * command.h (struct host): Likewise.
725
726 * zebra.h: Likewise.
727
7282000-08-20 Kunihiro Ishiguro <kunihiro@zebra.org>
729
730 * command.h (node_type ): Add AAA node for authentication.
731
732 * vty.c (vty_close): Do not close stdout.
733
7342000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
735
736 * vty.c (vty_init_vtysh): Added for vtysh.
737
738 * distribute.c (districute_list_prefix_all): Interface independent
739 filter can be set.
740 (distribute_list_all): Likewise.
741 (config_show_distribute): Display current distribute-list status
742 for "show ip protocols".
743
7442000-08-18 Akihiro Mizutani <mizutani@dml.com>
745
746 * command.c (config_terminal_no_length): no terminal monitor ->
747 terminal no monitor
748 (cmd_init): Do not install service_terminal_length_cmd into
749 ENABLE_NODE.
750
751 * vty.c (terminal_no_monitor): no terminal length -> terminal no
752 length.
753
7542000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
755
756 * zebra-0.88 is released.
757
7582000-08-17 Magnus Ahltorp <ahltorp@nada.kth.se>
759
760 * vty.h (struct vty ): Add iac_sb_in_progress and sb_buffer for
761 better IAC handling.
762
763 * vty.c (vty_telnet_option): Change telnet option handling.
764
7652000-08-15 Gleb Natapov <gleb@nbase.co.il>
766
767 * zclient.c (zclient_redistribute_unset): New function added.
768
7692000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
770
771 * zclient.c (zebra_interface_add_read): Change ifindex restore
772 size from two octet to four.
773 (zebra_interface_state_read): Likewise.
774 (zebra_interface_address_add_read): Likewise.
775
7762000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
777
778 * vty.c (vty_event): Use vector_set_index() instead of
779 vector_set().
780
7812000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
782
783 * zebra.h (ZEBRA_XXX_DISTANCE_DEFAULT): Define Default
784 Administrative Distance of each protocol.
785
7862000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
787
788 * if.h (struct interface ): Add new member bandwidth to struct
789 interface.
790
791 * zclient.c (zebra_interface_add_read): Fetch bandwidth value.
792 (zebra_interface_state_read): Likewise.
793
7942000-08-07 Gleb Natapov <gleb@nbase.co.il>
795
796 * routemap.c (route_map_event_hook): New hook route_map_event_hook
797 is added. This hook is called when route-map is changed. The
798 parameters passed to the hook are 'event' and 'route-map name'
799
800 * routemap.h: Add prototype for route_map_event_hook().
801
8022000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
803
804 * zclient.c (zebra_ipv4_route): zebra_ipv4_route(),
805 zebra_ipv4_add(), zebra_ipv4_delete() are removed.
806
807 * routemap.c (route_map_empty): Add new function.
808 (route_map_delete): Use route_map_index_delete() instead of
809 route_map_index_free().
810 (route_map_index_free): Function removed.
811
8122000-08-06 Gleb Natapov <gleb@nbase.co.il>
813
814 * routemap.c (route_map_index_delete): Add check for route-map is
815 empty or not.
816
8172000-08-03 Kunihiro Ishiguro <kunihiro@zebra.org>
818
819 * zclient.c (zebra_ipv4_add): Change socket arguemnt with struct
820 zclient.
821
8222000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
823
824 * zclient.h (struct zebra): Add obuf for output buffer.
825
826 * if.c: Remove #ifdef NRL enclosing if_nametoindex() and
827 if_indextoname().
828
8292000-08-02 David Lipovkov <davidl@nbase.co.il>
830
831 * if.h (IF_PSEUDO_UNSET): IF_PSEUDO related macro added.
832 (IF_UNKNOWN_SET): IF_UNKNOWN related macro deleted.
833
834 * if.c (interface_pseudo): Add "pseudo" command to interface node.
835 (no_interface_pseudo): Add "no pseudo" command to interface node.
836
837 * zclient.c (zebra_interface_add_read): Set pseudo flag when it is
838 send from zebra.
839
8402000-08-01 Kunihiro Ishiguro <kunihiro@zebra.org>
841
842 * zebra.h (ZEBRA_IPV4_NEXTHOP_LOOKUP): Add new message.
843 (ZEBRA_IPV6_NEXTHOP_LOOKUP): Likewise.
844
845 * vty.c (vty_serv_un): Use AF_UNIX for backward compatibility.
846
8472000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
848
849 * vty.c: Use vector for VTY server thread listing instead of
850 single value.
851
8522000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
853
854 * keychain.c (no_key_chain): "no key chain WORD" command is added.
855
8562000-07-29 Kunihiro Ishiguro <kunihiro@zebra.org>
857
858 * command.c (config_from_file): If command fail in
859 KEYCHAIN_KEY_NODE, down to KEYCHAIN_NODE.
860
861 * vty.h (struct vty ): Add index_sub member.
862
8632000-07-27 Akihiro Mizutani <mizutani@dml.com>
864
865 * if.c: Help strings updates.
866
8672000-07-11 Akihiro Mizutani <mizutani@dml.com>
868
869 * command.c (no_config_enable_password): Add "no enable password"
870 command.
871 (config_write_host): Display password string.
872
873 * routemap.c (route_map_delete_match): Add support for delete
874 match without argument.
875 (route_map_delete_set): Likewise.
876
8772000-07-09 Kunihiro Ishiguro <kunihiro@zebra.org>
878
879 * command.h (node_type ): Change KEYCHAIN_NODE and
880 KEYCHAIN_KEY_NODE place just before INTERFACE_NODE.
881
8822000-07-09 Jochen Friedrich <jochen@scram.de>
883
884 * smux.c (config_write_smux): Fixes the option to override OID and
885 password for SMUX.
886
8872000-07-09 Kunihiro Ishiguro <kunihiro@zebra.org>
888
889 * command.h (node_type ): Add SMUX_NODE for SMUX configuration.
890
8912000-07-09 Toshiaki Takada <takada@zebra.org>
892
893 * command.c: Sort descvec command's help.
894
895 * vty.c (vty_describe_command): Display '<cr>' at the end of
896 descriptions.
897
8982000-07-05 Toshiaki Takada <takada@zebra.org>
899
900 * command.c (cmd_ipv6_match), (cmd_ipv6_prefix_match): Fix bug
901 treatment of double colon.
902
9032000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
904
905 * zclient.h: Add zclient_redistribute_default_{set,unset}().
906
907 * keychain.c: New file for authentication key management.
908 * keychain.h: Likewise.
909
910 * tcpfilter.c: New file for TCP/UDP base filtering using ipfw or
911 ipchains.
912 * tcpfilter.h: Likewise.
913
914 * flap.h: New file for route flap dampening.
915 * flap.c: Likewise.
916
9172000-07-04 Toshiaki Takada <takada@zebra.org>
918
919 * filter.c (struct filter): Add exact flag.
920 (access_list): Add exact-match command.
921 (ipv6_access_list): Add exact-match command.
922
9232000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
924
925 * zebra.h (ZEBRA_REDISTRIBUTE_DEFAULT_ADD): New message for
926 request default route.
927
9282000-07-01 Hideaki YOSHIFUJI (\e$B5HF#1QL@\e(B) <yoshfuji@ecei.tohoku.ac.jp>
929
930 * smux.c: Add IPv6 smux connection code.
931
9322000-06-15 Kunihiro Ishiguro <kunihiro@zebra.org>
933
934 * vty.c (vty_complete_command): To cooperate readline library,
935 returned string is newly allocated. So some match function case
936 need, free of memory.
937
9382000-06-12 Akihiro Mizutani <mizutani@dml.com>
939
940 * distribute.c: Fix help strings.
941
9422000-06-11 Kunihiro Ishiguro <kunihiro@zebra.org>
943
944 * command.c (cmd_complete_command): Add check for vector_slot
945 (vline, index) is not NULL when calculating lcd.
946 (cmd_entry_function): First check variable arguemnt to prevent it
947 from completion.
948
9492000-06-10 Kunihiro Ishiguro <kunihiro@zebra.org>
950
951 * vty.h (struct vty ): Add output_count member for displaying
952 output route count. Remove arugment arg from output_func because
953 the value is passed by vty argument. Change output to output_rn.
954 Add output_clean function pointer member. Add output_type member.
955
9562000-06-10 Toshiaki Takada <takada@zebra.org>
957
958 * command.c (show_startup_config): Add "show startup-config"
959 command.
960
9612000-06-06 Akihiro Mizutani <mizutani@dml.com>
962
963 * filter.c: Fix help strings.
964
9652000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
966
967 * prefix.h (struct prefix_rd): New prefix structure for routing
968 distinguisher.
969 (struct prefix): Add padding to every prefix structure.
970
971
972 * routemap.c (route_map_add_match): When completely same match
973 statement exists, don't duplicate it.
974
9752000-06-05 Akihiro Mizutani <mizutani@dml.com>
976
977 * routemap.c: Change NAME to WORD.
978
979 * plist.c: Fix help strings.
980
9812000-06-02 Akihiro Mizutani <mizutani@dml.com>
982
983 * routemap.c: Fix route-map help strings.
984
9852000-06-01 Kunihiro Ishiguro <kunihiro@zebra.org>
986
987 * command.c (cmd_filter_by_completion): Fix CMD_VARARG treatment
988 to filter other non vararg commands.
989
990 * routemap.c (route_map_init_vty): Use install_default() for
991 install common commands into route-map node..
992
9932000-06-01 Akihiro Mizutani <mizutani@dml.com>
994
995 * command.h (OSPF_STR): Macro added.
996
9972000-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
998
999 * command.c (cmd_complete_command): LCD completion must not modify
1000 installed command string.
1001
1002 * plist.c (ipv6_prefix_list): Fix wrong syntax definition. Change
1003 X:X::X:X to X:X::X:X/M.
1004
10052000-05-31 Toshiaki Takada <takada@zebra.org>
1006
1007 * vty.c (show_history): New defun added.
1008
10092000-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1010
1011 * command.h (CMD_COMPLETE_LIST_MATCH): New define for completion
1012 list. CMD_COMPLETE_MATCH is used for LCD completion.
1013
1014 * vty.c (vty_complete_command): Matched string's LCD is completed.
1015
1016 * command.c (cmd_lcd): New function for calculate LCD of matched
1017 strings.
1018
10192000-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1020
1021 * command.c (install_default): config_write_terminal_cmd,
1022 config_write_file_cmd, config_write_memory_cmd are added to
1023 default node.
1024
1025 * memory.c (memory_init): Divide show memory command into each
1026 sort.
1027
1028 * command.c (cmd_init): config_write_terminal_cmd,
1029 config_write_file_cmd, config_write_memory_cmd are added to
1030 CONFIG_NODE.
1031
1032 * routemap.c (route_map_index_free): New function.
1033 (no_route_map_all): New DEFUN for "no route-map NAME".
1034
1035 * filter.c (no_access_list_all): New DEFUN for delete access-list
1036 with NAME.
1037 (no_ipv6_access_list_all): Likewise.
1038
10392000-05-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1040
1041 * plist.c: Change IPV6_PREFIX to X:X::X:X. When "any" is
1042 specified, user can not use "ge" and "le" statement.
1043
10442000-05-22 Thomas Molkenbur <tmo@datus.datus.com>
1045
1046 * routemap.c (route_map_add_set): Fix bug of next pointer missing.
1047
1048 * table.c (route_table_free): Like wise.
1049
10502000-05-22 Toshiaki Takada <takada@zebra.org>
1051
1052 * vty.c (vty_stop_input): Set history pointer to the latest one.
1053
1054 * vty.c (vty_hist_add): Do not add command line history when input
1055 is as same as previous one.
1056
10572000-05-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1058
1059 * memory.h (enum): Add MTYPE_ECOMMUNITY and MTYPE_ECOMMUNITY_VAL.
1060
10612000-05-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1062
1063 * command.h (node_type ): Add BGP_VPNV4_NODE.
1064
10652000-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1066
1067 * vty.c (vtysh_accept): Add cast of struct sockaddr * to bind
1068 argument. Reported by: Vesselin Mladenov <mladenov@netbg.com>.
1069
1070 * filter.c (ipv6_access_list): Add IPv6 prefix example instead of
1071 IPv4 example. Reported by: Love <lha@s3.kth.se>.
1072
1073 * command.c (cmd_complete_command): Make it sure last element of
1074 matchvec is NULL. This fix problem which cause crush in
1075 vty_complete_command(). Reported by: JINMEI Tatuya
1076 <jinmei@isl.rdc.toshiba.co.jp>.
1077
10782000-04-28 Love <lha@s3.kth.se>
1079
1080 * prefix.h (struct prefix): Add padding.
1081
10822000-04-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1083
1084 * command.c (show_version): Update copyright year.
1085
10862000-04-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1087
1088 * routemap.c (route_map_apply): When map is NULL, return deny.
1089
10902000-04-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1091
1092 * filter.c (access_list_apply): When access is NULL, return deny.
1093
1094 * plist.c (prefix_list_apply): When plist is NULL, return deny.
1095
10962000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1097
1098 * command.h (node_type ): Change RDISC_NODE to IRDP_NODE.
1099
11002000-04-18 Toshiaki Takada <takada@zebra.org>
1101
1102 * filter.[ch] (access_list_add_hook), (access_list_delete_hook):
1103 Add argument for hook function to give struct access_list *.
1104
11052000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1106
1107 * plist.c (prefix_list_entry_match): In case of le nor ge is
1108 specified, exact match is performed.
1109 (prefix_list_entry_match): Add any entry matching check.
1110
11112000-04-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1112
1113 * vty.c (exec_timeout): Separate timeout setting to minutes and
1114 seconds.
1115 (no_exec_timeout): Add "no exec-timeout" command.
1116
1117 * vty.h (VTY_TIMEOUT_DEFAULT): Change default value from 300 to
1118 600.
1119
11202000-03-31 Jochen Friedrich <jochen@scram.de>
1121
1122 * smux.h (SMUX_CLOSE): The SMUX_CLOSE PDU is implicit integer, so
1123 it is a primitive encoding and not constructed.
1124
11252000-03-28 Toshiaki Takada <takada@zebra.org>
1126
1127 * memory.[ch] (enum): Add MTYPE_OSPF_EXTERNAL_INFO.
1128
11292000-03-26 Love <lha@s3.kth.se>
1130
1131 * zclient.c (zclient_read): Add nbytes size check for
1132 ZEBRA_HEADER_SIZE. Check return value of steam_read ().
1133
11342000-03-26 Rick Payne <rickp@rossfell.co.uk>
1135
1136 * routemap.c: Add flexible route-map commands such as on-match
1137 next, on-match goto N.
1138
1139 * routemap.h: Likewise
1140
11412000-03-23 Adrian Bool <aid@u.net.uk>
1142
1143 * command.c (config_log_trap): Add new command "log trap
1144 PRIORITY".
1145
11462000-03-14 Toshiaki Takada <takada@zebra.org>
1147
1148 * memory.c (struct memory_list): Add Link List and Link Node
1149 to view.
1150
1151 * memory.h (enum): Remove MTYPE_OSPF_EXTERNAL_ROUTE.
1152
11532000-01-20 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1154
1155 * str.c (snprintf): Fix bug of calling sprintf instead of
1156 vsprintf.
1157
11582000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1159
1160 * memory.h (enum): Add MTYPE_RIP_PEER.
1161
11622000-01-15 Toshiaki Takada <takada@zebra.org>
1163
1164 * memory.h (enum): Add MTYPE_OSPF_CRYPT_KEY.
1165
11662000-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1167
1168 * command.h (node_type ): Add MASC_NODE for masc.
1169
11702000-01-09 Wang Jianliang <wangjl@soim.net>
1171
1172 * routemap.c (route_map_index_add): When route_map_index is not
1173 empty and insert new item at the head, it can cause core dump.
1174 Fix "if (index == map->head)" to "if (point == map->head).
1175 (route_map_add_set): If there is an old set command, override old
1176 set command with new one.
1177 (route_map_index_delete): Use while() instead of for for() for
1178 logical correctness.
1179
11801999-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1181
1182 * memory.h (enum): Add MTYPE_BGP_STATIC.
1183
11841999-12-23 Alex Zinin <zinin@amt.ru>
1185 * zebra.h, zclient.*: dynamic int up/down message
1186 support
1187
11881999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1189
1190 * thread.c (thread_cancel_event): Add a function for clean up
1191 events.
1192
11931999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1194
1195 * dropline.c: Delete file.
1196 dropline.h: Linewise.
1197
11981999-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1199
1200 * filter.c (access_list_filter_delete): Wrong pointer
1201 access->master was pointed out after access is freed. I store
1202 master value at the beginning of the function.
1203
12041999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1205
1206 * vty.c (exec_timeout): Change of VTY timeout affect to current
1207 VTY connection.
1208 (vty_accept): Instead of immediate exit() return -1.
1209
12101999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1211
1212 * vty.c (vty_configure_lock): Configuration lock function added.
1213 Only one VTY can use CONFI_NODE at the same time.
1214
1215 * log.c: Delete zvlog_* functions. Now zlog_* does the same
1216 thing.
1217
1218 * log.c (log_init): Function removed.
1219 (log_close): Likewise.
1220 (log_flush): Likewise.
1221 (log_open): Likewise.
1222
1223 * vty.c (terminal_monitor): Add new command.
1224 (no_terminal_monitor): Likewise.
1225
1226 * log.c (old_log): Function removed.
1227 (old_log2): Likewise.
1228 (old_log_warn): Likewise.
1229
12301999-12-04 Toshiaki Takada <takada@zebra.org>
1231
1232 * command.c (cmd_ipv6_match): New function added.
1233 (cmd_ipv6_prefix_match): Likewise.
1234
12351999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1236
1237 * command.c (cmd_ipv6_match):
1238
1239 * table.c: Delete #ifdef HAVE_MBGPV4.
1240
1241 * prefix.h (struct prefix): Add safi member.
1242 (struct prefix_ipv4): Likewise.
1243 (struct prefix_ipv6): Likewise.
1244
12451999-12-04 Rumen Svobodnikov <rumen@linux.tu-varna.acad.bg>
1246
1247 * memory.c (struct mstat): Revert to support MEMORY_LOG.
1248
12491999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1250
1251 * version.h: Bump up to 0.81c for testing new kernel codes.
1252
12531999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1254
1255 * thread.h (struct thread): Pthread support is disabled all
1256 platform.
1257
12581999-11-21 Michael Handler <handler@sub-rosa.com>
1259
1260 * Include <limits.h> and <strings.h> under SUNOS_5.
1261
12621999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1263
1264 * sockunion.c (in6addr_cmp): Enclosed by #define HAVE_IPV6
12651999-11-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1266
1267 * command.h (node_type ): Add BGP_IPV4_NODE and BGP_IPV6_NODE.
1268
12691999-11-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1270
1271 * command.c (disable): Add `disable' command.
1272
12731999-11-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1274
1275 * plist.c (vty_prefix_list_install): Add any check.
1276
12771999-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1278
1279 * command.h (node_type ): Add DUMP_NODE.
1280
12811999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1282
1283 * smux.c: Change default SMUX oid to compatible with gated.
1284
12851999-10-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1286
1287 * if_rmap.c: New file added.
1288
1289 * if_rmap.h: New file added.
1290
12911999-10-29 Alex Zinin <zinin@amt.ru>
1292
1293 * hash.c: add hash_free() function
1294
12951999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1296
1297 * hash.c (hash_clean): Add clean function.
1298
1299 * plist.c (prefix_list_reset): Add reset function.
1300
1301 * filter.c (access_list_reset): Add reset function.
1302
13031999-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1304
1305 * client.c: Merged with zclient.c.
1306 * client.h: Merged with zclient.h.
1307
13081999-10-15 Jordan Mendelson <jordy@wserv.com>
1309
1310 * md5.c: Imported from GNU C Library.
1311 * md5-gnu.h: Likewise.
1312
13131999-10-15 Jochen Friedrich <jochen@scram.de>
1314
1315 * smux.c (smux_getresp_send): SMUX_GETRSP codes improvement.
1316
13171999-10-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1318
1319 * smux.h: New file added.
1320
1321 * snmp.c: Rename to smux.c.
1322
13231999-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1324
1325 * command.c (cmd_execute_command_strict): Filter ambious commands.
1326 (cmd_filter_by_string): Change to return enum match_type.
1327
13281999-10-01 Toshiaki Takada <takada@zebra.org>
1329
1330 * vty.c (vty_describe_fold): New function which does VTY
1331 description line fold.
1332 * vty.c (vty_describe_command): Set description column.
1333
13341999-09-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1335
1336 * plist.c (prefix_list_init_ipv4): VTY user interface is improved.
1337
13381999-09-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1339
1340 * command.c (cmd_filter_by_string): Fix bug of CMD_IPV4 and
1341 CMD_IPV4_PREFIX check. Both return type must be exact_match.
1342
13431999-09-24 Toshiaki Takada <takada@zebra.org>
1344
1345 * command.c (cmd_filter_by_completion),
1346 (is_cmd_ambiguous): Check IPv4 address, IPv4 prefix and range
1347 parameter matches range.
1348
13491999-09-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1350
1351 * routemap.c (route_map_apply): Returm RM_DENYMATCH when no match
1352 is performed.
1353
13541999-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1355
1356 * vty.c (vty_read): Control-C stop VTY_MORE mode.
1357
13581999-09-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1359
1360 * command.h (node_type ): Add ACCESS_IPV6_NODE and
1361 PREFIX_IPV6_NODE.
1362
1363 * distribute.h: New file added.
1364
1365 * command.h (node_type ): Delete DISTRIBUTE_NODE.
1366
13671999-09-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1368
1369 * vty.c (vty_terminate_all): New function added for reload
1370 support.
1371
13721999-09-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1373
1374 * memory.h (enum): Add new type MTYPE_OSPF_EXTERNAL_ROUTE.
1375
13761999-08-31 Janos Farkas <chexum@shadow.banki.hu>
1377
1378 * vty.c (vty_read): Handle also 0x7f (alt-backspace), just like
1379 esc-ctrl-h (delete word backwards).
1380
13811999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1382
1383 * if.h: Add if_nametoindex for NRL.
1384
13851999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1386
1387 * if.c (if_create): New function.
1388
13891999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1390
1391 * snmp.c: New file.
1392
13931999-08-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1394
1395 * stream.c (stream_put): stream_memcpy () is changed to stream_put
1396 (). stream_get () is added.
1397
13981999-08-18 Toshiaki Takada <takada@zebra.org>
1399
1400 * memory.h (enum): Add MTYPE_OSPF_LSA_DATA.
1401
14021999-08-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1403
1404 * table.c (route_table_finish): add function frees table.
1405
14061999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1407
1408 * memory.h (enum): Add MTYPE_RTADV_PREFIX.
1409
14101999-08-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1411
1412 * if.h (struct interface ): hw_address, hw_address_len added.
1413
14141999-08-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1415
1416 * if.h (struct interface ): Change structure member if_data to
1417 info, index to ifindex.
1418
14191999-08-08 Rick Payne <rickp@rossfell.co.uk>
1420
1421 * routemap.c: Multi protocol route-map modification.
1422
1423 * routemap.c (route_map_apply): Route match process bug is fixed.
1424
14251999-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1426
1427 * thread.c (thread_fetch): When signal comes, goto retry point.
1428
14291999-08-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1430
1431 * Makefile.am: Add sockopt.c and sockopt.h
1432 * sockopt.c: New file.
1433 * sockopt.h: New file.
1434
14351999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1436
1437 * version.h (ZEBRA_VERSION): Release zebra-0.75
1438
14391999-08-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1440
1441 * memory.h (enum): Add MTYPE_RIPNG_AGGREGATE.
1442
14431999-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1444
1445 * sockunion.h: Add sockunion_getpeername ().
1446
14471999-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1448
1449 * version.h: Release zebra-0.74
1450
14511999-07-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1452
1453 * command.h (struct host): Delete lines from struct host. Add
1454 lines to struct vty.
1455
1456 * command.c: Delete `lines LINES'. Terminal display line settings
1457 should be done by `terminal length' command.
1458
14591999-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1460
1461 * memory.h (enum): MTYPE_OSPF_PATH are added.
1462
14631999-07-22 Toshiaki Takada <takada@zebra.org>
1464
1465 * memory.h (enum): MTYPE_OSPF_NEXTHOP is added.
1466
14671999-07-21 Toshiaki Takada <takada@zebra.org>
1468
1469 * linklist.c (list_add_node_prev), (list_add_node_next),
1470 (list_add_list): New function added.
1471
1472 * table.c (route_table_free): New function added.
1473
14741999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1475
1476 * plist.c (config_write_prefix): Set write flag when configuration
1477 is written.
1478
14791999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1480
1481 * prefix.c : prefix_cmp() added. change apply_mask() to
1482 apply_mask_ipv4(), and new apply_mask() added.
1483
14841999-07-14 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1485
1486 * prefix.c (prefix2str): append prefixlen.
1487
14881999-07-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1489
1490 * command.c (config_terminal): Change "config terminal" to
1491 "configure terminal". Reported by Georg Hitsch
1492 <georg@atnet.at>.
1493 (config_terminal_length): `terminal length <0-512>' is added. At
1494 this moment this command is only usef for vty interface.
1495 Suggested by Georg Hitsch <georg@atnet.at>.
1496
14971999-07-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1498
1499 * routemap.c (rulecmp): Add wrapper function of strcmp.
1500
15011999-07-08 Rick Payne <rickp@rossfell.co.uk>
1502
1503 * sockunion.c (inet_aton): Fix bug of inet_aton.
1504
15051999-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1506
1507 * version.h (ZEBRA_VERSION): Start zebra-0.73
1508
15091999-07-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1510
1511 * version.h: Bump up to 0.72.
1512
15131999-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1514
1515 * command.c (install_default): New function for install default
1516 commands to the node.
1517
1518 * memory.h (enum): MTYPE_NEXTHOP is added.
1519
15201999-07-01 <kunihiro@zebra.org>
1521
1522 * command.c (no_banner_motd): `no banner motd' command added.
1523
15241999-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1525
1526 * regex.c: Update to glibc-2.1.1's posix/regex.c
1527
1528 * regex-gnu.h: Update to glibc-2.1.1's posix/regex.h
1529
1530 * prefix.h (IPV4_ADDR_SAME): Macro added.
1531 (IPV6_ADDR_SAME): Likewise.
1532
15331999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1534
1535 * memory.h (enum): Add MTYPE_OSPF_VERTEX
1536
1537 * version.h: Bump up to 0.71.
1538
1539 * vty.c (vty_serv_sock_addrinfo): Use addrinfo function to bind
1540 VTY socket when IPv6 is enabled.
1541
15421999-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1543
1544 * vty.c (vty_serv_sock): Change vty_serv_sock determine which
1545 address family to bind.
1546
1547 * command.c: Add quit command.
1548
15491999-06-26 NOGUCHI kay <kay@dti.ad.jp>
1550
1551 * vty.c (vty_read_config): Fix bug of configuration file path
1552 detection.
1553
15541999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1555
1556 * version.h: Bump up to 0.70.
1557
15581999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1559
1560 * buffer.h (GETL): Remove GETL macro.
1561
1562 * version.h: Bump up to 0.69.
1563
15641999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1565
1566 * if.c (connected_add): Commented out connected_log.
1567
15681999-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1569
1570 * command.h (struct cmd_element ): strvec and descvec is combined
1571 into newstrvec.
1572
1573 * command.c (desc_make): Function removed.
1574 (desc_next): Function removed.
1575
1576 * command.h (struct cmd_element ): docvec is removed from struct
1577 cmd_element.
1578
15791999-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1580
1581 * command.c (cmd_execute_command): Remove command NULL check.
1582
1583 * command.h (struct cmd_element ): Add newstrvec entry to struct
1584 cmd_element.
1585 (DEFUN2): DEFUN2 macro is removed. DEFUN is extended to support
1586 (a|b|c) statement.
1587 (DESC): DESC macro is removed.
1588
1589 * vty.c (vty_complete_command): When return value is
1590 CMD_ERR_NO_MATCH, don't display error message.
1591
15921999-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1593
1594 * table.c (route_next_until): New function.
1595
1596 * version.h: Bump up to 0.68.
1597
15981999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1599
1600 * vty.c (vty_close): Free vty->buf when vty is closed.
1601
1602 * memory.h (enum): Add MTYPE_COMMUNITY_ENTRY and
1603 MTYPE_COMMUNITY_LIST.
1604
1605 * vty.h (struct vty ): Change buf from static length buffer to
1606 variable length buffer.
1607
1608 * vty.c (vty_ensure): New function added.
1609
16101999-06-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1611
1612 * command.h (node_type ): Add COMMUNITY_LIST_NODE.
1613
1614 * command.c (config_enable_password): Freeing host.enable bug is
1615 fixed.
1616 (config_enable_password): Add argc count check.
1617
16181999-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1619
1620 * version.h: Bump up to 0.67.
1621
16221999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1623
1624 * command.c (zencrypt): New function for encrypt password.
1625
1626 * command.h (struct host): Add password_encrypt and
1627 enable_encrypt.
1628
16291999-05-30 Jochen Friedrich <jochen@scram.de>
1630
1631 * command.h (struct host): New member encrypt is added for
1632 encrypted password.
1633
16341999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1635
1636 * vty.c: Remove all_digit_check function. Instead use all_digit.
1637
1638 * prefix.c (all_digit): New function for checking string is made
1639 from digit character.
1640
16411999-05-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1642
1643 * Makefile.am (libzebra_a_SOURCES): Add zclient.c.
1644 (noinst_HEADERS): Add zclient.h
1645
1646 * zclient.[ch]: New file for zebra client routine.
1647
1648 * memory.h (enum): Add MTYPE_ZEBRA.
1649
16501999-05-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1651
1652 * version.h (ZEBRA_VERSION): Update to 0.66.
1653
16541999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1655
1656 * buffer.h (GETC,GETW): Macro deleted.
1657
16581999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
1659
1660 * prefix.h (IPV4_NET0, IPV4_NET127): Macro added.
1661
16621999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1663
1664 * vty.c (service_advanced_vty): New command added.
1665 (no_service_advanced_vty): Likewise.
1666
16671999-05-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1668
1669 * vty.c (vty_auth): If advanced flag is set and enable password is
1670 not set, directly login to the ENABLE_NODE. This feature is
1671 originally designed and implemented by Stephen R. van den Berg
1672 <srb@cuci.nl>.
1673
1674 * command.h (host): Add advanced flag to struct host for advanced
1675 vty terminal interface.
1676
1677 * version.h (ZEBRA_VERSION): Update to 0.65 for next beta release.
1678
16791999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1680
1681 * command.h (node_type ): Add TABLE_NODE.
1682
1683 * vty.c (vty_telnet_option): Check host.lines value.
1684
1685 * command.c (config_lines): DEFUN for 'lines LINES' command.
1686
1687 * zebra.h: Include <sys/utsname.h> for uname().
1688 (RT_TABLE_MAIN): Defined as 0 if OS does not support multiple
1689 routing table.
1690
1691 * vty.c (vty_auth): Directly login to the ENABLE_NODE when enable
1692 password is not set.
1693 (vty_prompt): Get machine's hostname when hostname is not set.
1694
16951999-05-11 James Willard <james@whispering.org>
1696
1697 * command.c (config_exit): Close connection when `exit' command is
1698 executed at ENABLE_NODE.
1699
17001999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1701
1702 * vty.c (vty_stop_input): `C-c' key change node to ENABLE_NODE.
1703
1704 * command.c (cmd_execute_command_strict): Matched command size
1705 check added.
1706 (cmd_make_desc_line): New function for DEFUN2.
1707
1708 * command.h (struct cmd_element ): Add descsize.
1709
17101999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1711
1712 * command.h (struct cmd_element ): Remame descvec to docvec.
1713 (struct cmd_element ): Add descvec for new description system.
1714
1715 * command.c (desc_make): Check cmd->descvec.
1716
17171999-05-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1718
1719 * memory.h (enum): Add MTYPE_CLUSTER, MTYPE_CLUSTER_VAL.
1720
17211999-05-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1722
1723 * version.h (ZEBRA_VERSION): Bump up to 0.64 for next beta
1724 release.
1725
17261999-05-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1727
1728 * linklist.c (list_delete_all_node): bug fix.
1729 previous code loses current position when node
1730 is deleted.
1731
17321999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1733
1734 * command.h (DESC): Macro added.
1735 (struct cmd_element2): Delete struct cmd_element2.
1736
1737 * plist.c (prefix_list): Sequential number option check is added.
1738
17391999-05-02 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1740
1741 * log.c (zvlog_{debug,info,notice,warn,err}): have been
1742 added. now we can log both console and file, but still
1743 need some fix about config write.
1744
17451999-05-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1746
1747 * log.c (zvlog_debug): Fix yasu's change.
1748
17491999-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1750
1751 * plist.c (prefix_list): Fix typo.
1752
17531999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1754
1755 * Set version to 0.63 for first beta package.
1756
17571999-04-27 Carlos Barcenilla <barce@frlp.utn.edu.ar>
1758
1759 * prefix.c (str2prefix_ipv4): Fix prefix length check.
1760 (str2prefix_ipv6): Likewise.
1761
17621999-04-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1763
1764 * memory.h (enum): Add MTPYE_PREFIX_LIST and
1765 MTYPE_PREFIX_LIST_ENTRY.
1766
1767 * command.h (node_type ): Add PREFIX_NODE.
1768
17691999-04-25 Carlos Barcenilla <barce@frlp.utn.edu.ar>
1770
1771 * command.c: ALIAS (config_write_memory_cmd) and ALIAS
1772 (copy_runningconfig_startupconfig_cmd) is added.
1773
1774 * table.c (route_node_lookup): Unused match variable deletion.
1775
17761999-04-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1777
1778 * Makefile.am (libzebra_a_SOURCES): plist.c added.
1779 (noinst_HEADERS): plist.h added.
1780
1781 * plist.c, plist.h: New file added.
1782
1783 * memory.h (enum): Rename MTYPE_AS_PASN to MTYPE_AS_STR.
1784 * memory.c: Likewise.
1785
17861999-04-19 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
1787
1788 * command.c (show_version): `show version' command added.
1789
17901999-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1791
1792 * prefix.c (str2prefix_ipv6): Prefix length overflow check.
1793
17941999-04-19 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
1795
1796 * prefix.c (str2prefix_ipv4): Prefix length overflow check.
1797
17981999-04-19 Alex Bligh <amb@gxn.net>
1799
1800 * prefix.c (sockunion2hostprefix): Function added.
1801 (sockunion2prefix): Address family was not set. Now it is set.
1802
1803 * vty.c: VTY access-class command is added.
1804
18051999-04-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1806
1807 * memory.c: Change xmalloc to zmalloc. xcalloc, xrealloc, xfree,
1808 xstrdup are likewise.
1809
18101999-04-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1811
1812 * thread.c: Add thread_execute for other routing daemon.
1813 OSPF tasks need to be generated by "sheduled" and "executed".
1814
18151999-04-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1816
1817 * buffer.c: Rewrite buffer_write and buffer_flush related
1818 functions for fixing bugs. Reason of the problem and fix is
1819 suggested by Alex Bligh <amb@gxn.net>.
1820
18211999-04-12 Alex Bligh <amb@gxn.net>
1822
1823 * command.c (cmd_entry_function_descr): Added for variable
1824 argument help display.
1825
18261999-04-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1827
1828 * regex.c, regex-gnu.h: Imported from GNU sed-3.02 distribution.
1829
18301999-03-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1831
1832 * stream.c: stream_fifo_free bug is fixed.
1833
18341999-03-19 Toshiaki Takada <takada@zebra.org>
1835
1836 * stream.c (stream_strncpy): Added for getting any length bytes
1837 from stream.
1838
18391999-03-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1840
1841 * version.h (ZEBRA_BUG_ADDRESS): New macro added.
1842
18431999-03-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1844
1845 * buffer.c (buffer_flush_window): If ep is same as buffer's size
1846 length and lp is overrun one octet.
1847
18481999-03-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1849
1850 * vty.h: add VTY's timeout function.
1851
18521999-03-05 <kunihiro@zebra.org>
1853
1854 * command.h (node_type ): Add OSPF6_node.
1855
18561999-03-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1857
1858 * zebra.h: Check HAVE_SYS_SELECT_H when include <sys/select.h>
1859
18601999-03-03 Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>
1861
1862 * zebra.h: Include <net/if_var.h> if it exists.
1863
18641999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1865
1866 * getopt.[ch],getopt1.c: Sync with glibc-2.1.
1867
1868 * log.c (zlog): Tempolary ZLOG_STDOUT feature added.
1869
1870 * command.h: Include vector.h and vty.h
1871
18721999-02-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1873
1874 * routemap.h (struct route_map_rule_cmd): Add prefix arguemnt.
1875
1876 * routemap.c (route_map_apply_index): Add prefix argument.
1877 (route_map_apply): Likewise.
1878
1879 * memory.h (enum): Add MTYPE_ROUTE_MAP_COMPILED.
1880
1881 * stream.c: Add stream_fifo related functions.
1882
18831999-02-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1884
1885 * daemon.c: Return integer value. File descriptor close is added.
1886
1887 * memory.h (enum): add MTYPE_OSPF_LSA.
1888
18891999-02-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1890
1891 * rsh.c: Remove empty file.
1892
18931999-02-22 <kunihiro@zebra.org>
1894
1895 * routemap.c: Add add/delete hook to route_map_master.
1896
18971999-02-19 Peter Galbavy <Peter.Galbavy@knowledge.com>
1898
1899 * str.[ch] added to supply wrappers for snprintf(), strlcat() and
1900 strlcpy on system without these.
1901
19021999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1903
1904 * syslog support added
1905
19061999-02-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1907
1908 * filter.c (access_list_add_hook): added for hook function management.
1909 * filter.c (access_list_delete_hook): Likewise.
1910
19111999-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1912
1913 * stream.c: New file.
1914 * stream.h: New file.
1915 * Divide stream related fucntions from buffer.[ch] into stream.[ch].
1916
19171999-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1918
1919 * memory.h (enum): add MTYPE_STREAM, MTYPE_STREAM_DATA
1920
1921 * buffer.c (stream_new): Set MTYPE_STREAM to XMALLOC argument.
1922
19231998-12-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1924
1925 * routemap.c: route_map_index_delete() added.
1926
19271998-12-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1928
1929 * buffer.c (buffer_empty): check cp instead of sp.
1930
19311998-12-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1932
1933 * radix.[ch]: Deleted.
1934
19351998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1936
1937 * buffer.c: Prototype fixes.
1938 * prefix.c: Likewise.
1939 * sockunion.c: Likewise.
1940 * sockunion.h: Likewise.
1941
19421998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1943
1944 * vty.c (vty_read): DELETE key works as vty_delete_char.
1945
19461998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1947
1948 * log.c (time_print): chane %y to %Y.
1949
19501998-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1951
1952 * distribute.c: new file.
1953
19541998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1955
1956 * filter.c: Remove all of struct prefix_{ipv4,ipv6} and add
1957 complete support of IPv6 access list.
1958
1959 * command.c (config_write_element): function delete.
1960 (config_write_host): function add. password and enable password
1961 isn't printed to vty interface.
1962
19631998-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1964
1965 * filter.c: Change prefix_ipv4 to prefix and add support of
1966 prefix_ipv6 filtering.
1967
19681998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1969
1970 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6 inet6-apps
1971 header includes.
1972
19731998-12-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1974
1975 * log.c (log_flush): fix function name typo.
1976
19771998-12-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1978
1979 * memory.h: OSPF memory type is added.
1980
19811998-11-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1982
1983 * command.c (sort_node): add sort_node() for pretty printing of
1984 command on vty interface.
1985 (config_password): delete the restriction of charaster of password
1986 string.
1987
19881998-09-05 Kunihiro Ishiguro <kunihiro@debian.zebra.org>
1989
1990 * prefix.c (prefix_ipv4_any): add prefix_ipv4_any().
1991
19921998-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1993
1994 * network.h: New file.
1995
19961998-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1997
1998 * vty.c (vty_will_echo): function name change from vty_off_echo.
1999
20001998-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2001
2002 * buffer.h: add PUTC,PUTW,PUTL macros.
2003
20041998-07-22 Kunihiro Ishiguro <kunihiro@zebra.org>
2005
2006 * route.[ch]: renamed to prefix.[ch]
2007
20081998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2009
2010 * prefix_in, prefix_in6 is replaced by prefix_ipv4, prefix_ipv6.
2011
2012 * Makefile.am: @INCLUDES@ is deleted from INCLUDES.
2013
20141998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2015
2016 * host.[ch]: merged with command.[ch]
2017
20181998-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2019
2020 * Makefile.am (libzebra_a_SOURCES): add route.c to libzebra_a_SOURCES.
2021
20221998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2023
2024 * route.c (str2prefix): str2prefix () is gone.
2025
20261998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2027
2028 * vty.c (vty_read_config): change CONDIR to SYSCONFDIR.
2029
2030 * .cvsignore: add file.
2031
2032 * memory.c (xerror): add arguent `type' and `size'.
2033
2034 * socket.c: deleted.
2035
20361998-05-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2037
2038 * vector.c: malloc,free,realloc -> XMALLOC,XFREE,XREALLOC.
2039 * linklist.c: same as above.
2040
20411998-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2042
2043 * filter.[ch]: added.
2044
20451998-04-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2046
2047 * vty.c (config_who): return CMD_SUCCESS
2048
20491998-04-01 Jochen Friedrich <jochen@scram.de>
2050
2051 * table.c (route_dump_node): route_dump_node is IPv6 specific
2052 function so move #ifdef to the end of route_dump_node ().
2053
20541998-03-05 "Hannes R. Boehm" <hannes@boehm.org>
2055
2056 * if.c: DEFUN(interface_desc) added.
2057
20581998-03-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2059
2060 * if.c: separated from ripd/rip_interface.c
2061
20621998-03-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2063
2064 * thread.[ch] : added.
2065
20661998-02-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2067
2068 * vty.c (vty_delete_char): fix size bug.
2069 (vty_backward_pure_word): function added.
2070 (vty_read): ESC + 'f' perform vty_forward_word.
2071 (vty_read): ESC + 'b' perform vty_backward_word.
2072
20731998-02-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2074
2075 * radix.c (radix_lookup_rt): add mask check.
2076 (radix_delete_duproute): add mask check.
2077
20781998-02-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2079
2080 * command.c (config_write_file): fix vty -> file_vty.
2081
20821998-02-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2083
2084 * command.c (cmd_filter_ambiguous): add complex type treatment.
2085
20861998-02-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2087
2088 * vty.c (vty_time_print): function added.
2089 (vty_complete_command): now [...] element isn't shown by completion.
2090
20911998-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2092
2093 * command.c : change from cmd_install_node() to install_node().
2094
20951998-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
2096
2097 * route.[ch]: struct rt{} is replaced by struct prefix{}.
2098
20991998-01-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2100
2101 * command.c (cmd_execute_command): check command length.
2102
2103 * timer.c (zebra_timer_set): add zebra_timer_set.
2104
21051998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2106
2107 * command.h (node_type ): add ZEBRA_NODE.
2108
2109 * command.c (config_exit): add RIP_NODE.
2110 (config_write_file): add RIP_NODE.
2111
21121998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2113
2114 * print_version.c (print_version): Now Copyright is 1996-1998.
2115
2116 * sockunion.c (sockunion_log): moved from ../zebra/route.c
2117
21181997-12-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2119
2120 * host.c (config_logfile): change 'log PATH' to 'logfile PATH'.
2121
2122 * sockunion.c (sockunion_sameprefix): add same prefix for
2123 sockunion.
2124
21251997-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2126
2127 * radix.[ch] : are moved from ../zebra directroy.
2128
2129 * command.c (config_from_file): if command execution failed down
2130 level to CONFIG_NODE.
2131
2132 * host.c: config_log function which enable 'log FILENAME' command.
2133
21341997-12-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2135
2136 * vty.c: add vty_transpose_chars (). Now you can use '^T' to
2137 transpose character.
2138
2139 * command.c: cmd_cmdsize add, this is useful to check incomplete
2140 command.
2141
21421997-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2143
2144 * fd.h: add family for address family
2145
21461997-12-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2147
2148 * command.o
2149 * vty.o
2150 * host.o is moved from ../zebra
2151
21521997-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2153
2154 * make library directory.
2155