blob: 2ce2302f3d8d53038749fa56990761b711ede638 [file] [log] [blame]
paul33394762004-09-13 11:27:57 +000012004-09-13 Paul Jakma <paul@dishone.st>
2
3 * command.c: Update the copyright string in the default motd.
4
gdt630e4802004-08-31 17:28:41 +000052004-08-31 David Wiggins <dwiggins@bbn.com>
6
7 * hash.c (hash_iterate): Save next pointer before calling
8 procedure, so that iteration works even if the called procedure
9 deletes the hash backet.
10
11 * linklist.h (listtail): new macro, not yet used.
12
hasso34553cc2004-08-27 13:56:39 +0000132004-08-27 Hasso Tepper <hasso at quagga.net>
14
15 * command.c: Install "terminal length" commands only if vty is used.
16 Vtysh will handle it itself.
17
gdtafa43b22004-08-26 13:12:41 +0000182004-08-26 Greg Troxel <gdt@fnord.ir.bbn.com>
19
20 * sockopt.h: Define method-independent macro for callers of
21 get_ifindex to use for cmsg length.
22
paule6822762004-08-19 04:13:29 +0000232004-08-19 Paul Jakma <paul@dishone.st>
24
paulefba6ce2004-08-25 13:47:16 +000025 * zebra.h: add MAX and MIN defines (eg for ospf6d)
26
272004-08-19 Paul Jakma <paul@dishone.st>
28
paule6822762004-08-19 04:13:29 +000029 * sockopt.c: include sockopt.h
30 rename some of the _pktinfo_ functions to _ifindex, where that is
31 their purpose.
32 (getsockopt_ipv6_pktinfo_ifindex) renamed to
33 getsockopt_ipv6_ifindex.
34 (setsockopt_ipv4_pktinfo) renamed to setsockopt_ipv4_ifindex
35 (setsockopt_pktinfo) update with previous and add comment re
36 AF_INET portability.
37 (setsockopt_ifindex) generic ifindex function ala
38 setsockopt_pktinfo.
39 (getsockopt_ipv4_pktinfo_ifindex) renamed to
40 getsockopt_ipv4_ifindex.
41 (getsockopt_ipv4_ifindex) rejiggling to reduce repeated
42 ifdef/elses. pktinfo case forgot to set ifindex.
43 (getsockopt_pktinfo_ifindex) renamed to
44 getsockopt_ifindex. update some calls to renamed functions.
45 * sockopt.h: Update renamed exported functions
46 Rename the CMSG_SIZE macros to IFINDEX.
47 Guard IPv4 PKTINFO in a conditional define.
48
paulc0618de2004-08-18 21:52:58 +0000492004-08-18 Paul Jakma <paul@dishone.st>
50
51 * vty.c: (vty_serv_un) set unix vty socket to nonblocking
52 to prevent inadvertent blocking of daemons by use of
53 vtysh. TODO: disentangle manual paging from the buffer_write
54 path so that unix vty can use this path too and be reliable.
55
gdt33f92322004-07-23 16:14:32 +0000562004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com>
57
58 * sockopt.c (getsockopt_ipv4_pktinfo_ifindex): Make this compile
59 on NetBSD, and add comments to make it less confusing. Change the
60 sense of the SUNOS_5 test to make parallel structure between the
61 variables and the code.
62
paul4f7baa02004-07-23 15:11:07 +0000632004-07-23 Paul Jakma <paul@dishone.st>
64
65 * sockopt.h: Add SOPT_SIZE_CMSG_PKTINFO{_IPV{4,6}} define, for
66 sizeof pktinfo as appropriate, to be used when allocating msg
67 buffers. export setsockopt_pktinfo() and
68 getsockopt_pktinfo_ifindex()
69 * sockopt.c: (setsockopt_pktinfo_ifindex) new function to portably
70 set received ifindex sock option.
71 (getsockopt_pktinfo_ifindex) portably retrieve ifindex.
72 (getsockopt_cmsg_data) retrieve indicated control info from
73 message header.
74 (getsockopt_ipv6_pktinfo_ifindex) ipv6 version of above.
75 (setsockopt_ipv4_pktinfo) v4 version
76 (setsockopt_pktinfo) the exported version
77 (getsockopt_ipv4_pktinfo_ifindex) v4 specific version
78 (getsockopt_pktinfo_ifindex) the exported version
79
paul05c447d2004-07-22 19:14:27 +0000802004-07-14 Paul Jakma <paul@dishone.st>
81
82 * sigevent.c: (quagga_signal_handler) add a global caught flag, set
83 the flags to a constant rather increment to be kinder.
84 (quagga_sigevent_process) new function, to do core of what
85 quagga_signal_timer did. dont block signals at all as sig->caught
86 is volatile sig_atomic_t and should be safe to access from signal
87 and normal contexts. The signal blocking is unneeded paranoia, but
88 is left intact under an ifdef, should some platform require it.
89 Check global caught flag before iterating through array.
90 (quagga_signal_timer) nearly everything moved to
91 quagga_sigevent_process. Left in under ifdef, in case some
92 platform could use a regular timer check for signals.
93 * sigevent.h: quagga_sigevent_process declaration.
94 * thread.c: (thread_fetch) check for signals at beginning of
95 scheduler loop, check for signals if select returns EINTR.
96
gdtb7797132004-07-13 13:47:25 +0000972004-07-13 Greg Troxel <gdt@poblano.ir.bbn.com>
98
99 * sigevent.c: Don't block SIGTRAP and SIGKILL. Blocking SIGTRAP
100 confuses gdb, at least on NetBSD 2.0_BETA, where the block
101 succeeds.
102
paul5510e832004-07-09 14:00:01 +00001032004-07-09 Paul Jakma <paul@dishone.st>
104
105 * Merge Kunihiro's 'show route-map' change and add
106 compatibility aliases for route-map continue
paulb9790b32004-07-09 14:05:47 +0000107 * jhash.{c,h}: New files. Bob Jenkins' public domain hashing
108 function, as implemented in linux kernel by David Miller.
paul5510e832004-07-09 14:00:01 +0000109
paulb06c14f2004-07-09 12:24:42 +00001102004-07-09 Juris Kalnins <juris@mt.lv>
111
112 * if.c: (if_cmp_func) fix for interface names where name is same,
113 but one has no number, eg "devtyp" and "devtyp0".
114
gdt87efd642004-06-30 17:36:11 +00001152004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
116
117 * Makefile.am: Make libzebra shared.
118
paul138ce752004-06-21 10:35:59 +00001192004-06-21 Paul Jakma <paul@dishone.st>
120
121 * ChangeLog: fix my last update config.h -> zebra.h ;)
122 * zebra.h: Fix gcc check.
123
paul02ff83c2004-06-11 11:27:03 +00001242004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
125
126 * filter.c: (access_list_remark_cmd) buffer_putstr doesnt need cast
127 to u_char. (ipv6_access_list_remark_cmd) ditto.
128 if.c: ditto
129 * network.c: (readn/writen) pointer arg should be type u_char.
130 * plist.c: needs to include stream.h, not declare stream functions
131 internally.
132 (various) Add static qualifier to internal functions.
133 (prefix_list_type_str) extraneous breaks in switch statement.
134 (ip_prefix_list_description_cmd) buffer_putstr doesnt need cast
135 * stream.h: depends on plist.h and export stream_put_prefix
136 * vty.c: (vty_<telnet option build functions>) should use
137 unsigned char, telnet options are 0 -> 255.
138 * zclient.c: various u_char<->char type cleanups.
139 * zebra.h: Having to define CMSG_* can apply to more than just
140 BSDI_NRL.
141
paul51a87982004-06-09 10:36:05 +00001422004-06-09 Paul Jakma <paul@dishone.st>
143
paul138ce752004-06-21 10:35:59 +0000144 * zebra.h: __attribute__ is a gcc'ism
paul51a87982004-06-09 10:36:05 +0000145
paul5228ad22004-06-04 17:58:18 +00001462004-06-04 Paul Jakma <paul@dishone.st>
147
148 * type mismatch fixes
149
hasso6708fa32004-05-18 18:46:54 +00001502004-05-18 Hasso Tepper <hasso@estpak.ee>
151
152 * pqueue.[c|h]: Added as part of ospf6d merge from Zebra repository.
153
paul0a589352004-05-08 11:48:26 +00001542004-05-08 Paul Jakma <paul@dishone.st>
155
156 * zclient.c (zapi_ipv4_route) Follow Sowmini's lead and describe
157 message format.
158
1592004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com>
160
161 * zclient.c: (zapi_ipv4_add) collapsed into zapi_ipv4_route
162 (zapi_ipv4_delete) ditto.
163 (zapi_ipv4_route) add/delete a route by way of cmd arg.
164 (zapi_ipv6_add) collapsed into zapi_ipv6_route.
165 (zapi_ipv6_delete) ditto.
166 (zapi_ipv6_route) add/delete a route by way of cmd arg.
167 (zebra_interface_address_delete_read) collapsed into
168 zebra_interface_address_read.
169 (zebra_interface_address_delete_read) ditto.
170 (zebra_interface_address_read) read address add/delete messages
171 by way of type argument. Describe command message format.
172 (zebra_interface_add_read) Unconditionally read new ifmtu6 field.
173 Describe command message format.
174 (zebra_interface_state_read) Unconditionally read new ifmtu6 field.
175 (zclient_redistribute_set) Collapsed into zclient_redistribute
176 (zclient_redistribute_unset) ditto
177 (zclient_redistribute) set/unset redistribution.
178 (zclient_redistribute_default_set) Collapsed into
179 zclient_redistribute_default.
180 (zclient_redistribute_default_unset) ditto.
181 (zclient_redistribute_default) Redistribute default set/unset.
182 * zclient.h: delete zapi_ipv{4,6}_add, zapi_ipv{4,6}_delete. Add
183 zapi_ipv{4,6}_route. delete zclient_redistribute_set/unset. Add
184 zclient_redistribute. Ditto for
185 zclient_redistribute_default_{set/unset}.
186
paul4a7aac12004-05-08 05:00:31 +00001872004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com>
188
189 * if.h: Add mtu6 field to struct interface, IPv6 MTU may differ
190 from IPv4, and Solaris treats the MTU's differently.
191 Add connected_add_by_prefix, for use by later patch.
192 * if.c: (connected_add_by_prefix) Add prefix to connected list.
193 (if_flag_dump) Solaris: Dump IFF_IPv4/6 flag
194 (if_dump) Dump mtu6 flag, for HAVE_IPV6.
paul22528292004-05-08 05:10:38 +0000195 * command.c: (sockunion_getsockname) use socklen_t for len.
196 (sockunion_getpeername) ditto.
paul0a589352004-05-08 11:48:26 +0000197
paul31fcdd32004-04-21 11:00:43 +00001982004-04-21 Boris Kovalenko <boris@tagnet.ru>
199
200 * daemon.c: (daemon) fix check for error return from setsid
201
paulc49b3062004-01-19 21:23:37 +00002022004-01-19 Paul Jakma <paul@dishone.st>
203
204 * sigevent.{c,h}: New files, implement event handled signals.
205 see signal_init() in sigevent.h.
206
jardinc32e1b52003-12-23 09:06:51 +00002072003-12-23 Vincent Jardin <jardin@6wind.com>
208
209 * {command.c, memory.c, vty.c, zebra.h}: Add isisd support
210
gdt3dbf9962003-12-22 20:18:18 +00002112003-12-22 Greg Troxel <gdt@fnord.ir.bbn.com>
212
213 * vty.c (vty_use_backup_config): Don't free filenames before using
214 them for unlink.
215
paul54aba542003-08-21 20:28:24 +00002162003-08-20 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
217
218 * command.c: Fix <cr> display problem for command line
219 description
220
paule9af5c72003-05-24 11:54:31 +00002212003-05-24 Anil Madhavapeddy
222
223 * (sockunion.c): Incorrect bounds specified in sockunion_log()
224
paul445f1432003-05-16 19:00:31 +00002252003-05-08 Sergiy Vyshnevetskiy <serg @ vostok.net>
226
227 * vty.c: -A option
228
2292003-04-19 Hasso Tepper <hasso@estpak.ee>
230
231 * rip_routemap.c: sync daemon's route-map commands to have same
232 syntax
233
paul718e3742002-12-13 20:15:29 +00002342002-09-28 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
235
236 * vty.c (vty_flush): One line more on vty.
237
2382002-09-27 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
239
240 * vector.c (vector_lookup): Add new function.
241
2422002-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
243
244 * thread.c (timeval_adjust): Fix unconditional crush due to
245 FreeBSD's select() system call timeval value check.
246
2472002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
248
249 * zebra-0.93 released.
250
2512002-06-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
252
253 * if.c (ifc_pointopoint): Add ifc_pointopoint() accoding to Frank
254 van Maarseveen's suggestion.
255
2562002-06-18 Kunihiro Ishiguro <kunihiro@zebra.org>
257
258 * command.c: Change bcopy() to memcpy().
259
2602001-12-12 Kunihiro Ishiguro <kunihiro@zebra.org>
261
262 * command.c (config_password): Fix host.password clear bug.
263 Reported by Wang Jian <lark@linux.net.cn>.
264
2652001-08-29 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
266
267 * thread.c (thread_should_yield): New function to check thread
268 should yeild it's execution to other thread. Suggested by: Rick
269 Payne <rickp@ayrnetworks.com>
270
2712001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
272
273 * thread.c (thread_timer_cmp): Rewrite function.
274
275 * hash.c: Add hash_get(). Change hash_pull() to hash_release().
276
2772001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
278
279 * zebra-0.92a released.
280
2812001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
282
283 * zebra-0.92 released.
284
2852001-08-12 Akihiro Mizutani <mizutani@dml.com>
286
287 * prefix.c (netmask_str2prefix_str): Convert "1.1.0.0 255.255.0.0"
288 string to "1.1.0.0/16".
289
2902001-08-10 Kunihiro Ishiguro <kunihiro@zebra.org>
291
292 * filter.c (access_list_lookup): access_list_lookup's first
293 argument is changed from address family to AFI.
294
295 * plist.c: (prefix_list_lookup): Likewise.
296
2972001-07-27 Akihiro Mizutani <mizutani@dml.com>
298
299 * plist.c: ge and le display order is changed. Old compatible
300 rule (len <= ge-value <= le-value) is removed.
301
3022001-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
303
304 * prefix.h: Temporary fix for alignment of prefix problem.
305
3062001-06-21 Kunihiro Ishiguro <kunihiro@zebra.org>
307
308 * prefix.h (struct prefix): Remove safi and padding field.
309 (struct prefix_ipv4): Likewise.
310 (struct prefix_ipv6): Likewise.
311 (struct prefix_ls): Likewise.
312 (struct prefix_rd): Likewise.
313
314 * command.h (enum node_type): Preparation for BGP new config.
315
316 * vty.c (vty_end_config): Likewise.
317
3182001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
319
320 * routemap.c (route_map_rule_delete): Call func_free when
321 route-map rule is deleted.
322
3232001-06-14 "Akihiro Mizutani" <mizutani@dml.com>
324
325 * routemap.c (route_map_index_lookup): Prevent to use deny and
326 permit for same route-map sequence.
327
3282001-04-12 Kunihiro Ishiguro <kunihiro@zebra.org>
329
330 * vty.c (vty_read_config): Fix warning.
331
3322001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
333
334 * command.c (IPV6_PREFIX_STR): Add '.' and '%' for IPv6 address
335 strings.
336
3372001-03-07 Kunihiro Ishiguro <kunihiro@zebra.org>
338
339 * zebra.h (_XPG4_2): Define _XPG4_2 and __EXTENSIONS__ for
340 CMSG_FIRSTHDR.
341
3422001-03-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
343
344 * zebra.h (struct in_pktinfo): structure in_pktinfo declaration.
345
3462001-02-19 Kunihiro Ishiguro <kunihiro@zebra.org>
347
348 * memory.c (memory_list_lib): Add MTYPE_NEXTHOP for "show memory
349 lib" member.
350
3512001-02-13 Matthew Grant <grantma@anathoth.gen.nz>
352
353 * vty.c (vty_read_config): Revert check of integrate_default when
354 VTYSH is defined.
355
3562001-02-13 Kunihiro Ishiguro <kunihiro@zebra.org>
357
358 * vty.c (vty_read_config): Do not check integrate_default. That
359 should be used only by vtysh.
360
3612001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
362
363 * vty.c (vty_serv_un): Set umask 0077.
364 (vty_read_config): Stat for vtysh Zebra.conf, if found startup and
365 wait for boot configuration.
366
367 * if.c (if_lookup_address): Make it smart implementation.
368
369 * sockopt.c (setsockopt_multicast_ipv4): Set up a multicast socket
370 options for IPv4 This is here so that people only have to do their
371 OS multicast mess in one place rather than all through zebra,
372 ospfd, and ripd .
373
3742001-02-04 Akihiro Mizutani <mizutani@dml.com>
375
376 * plist.c (vty_prefix_list_install): Even when argument is
377 invalid, new memory is allocated. Now memory allocation is done
378 after argument check.
379
3802001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
381
382 * zebra-0.91 is released.
383
3842001-01-31 Akihiro Mizutani <mizutani@dml.com>
385
386 * vty.c (vty_login): Add vty login command.
387
3882001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
389
390 * vty.c (vty_reset): Close accept socket.
391
3922001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
393
394 * memory.h (enum): MTYPE_ATTR_TRANSIT is added for unknown transit
395 attribute.
396
3972001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
398
399 * zclient.c (zebra_interface_address_add_read): Fetch interface
400 address flag.
401 (zebra_interface_address_delete_read): Likewise.
402
4032001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
404
405 * table.c (route_node_match_ipv4): Utility function for IPv4
406 address lookup.
407 (route_node_match_ipv6): Utility function for IPv4 address lookup.
408
4092001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
410
411 * if.c: Delete RIP_API part until new implementation comes out.
412
4132001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
414
415 * hash.h (struct Hash): Rename alloc to count. Change type to
416 unsigned long.
417
418 * stream.c (stream_getc_from): New function.
419 (stream_getw_from): Likewise.
420
421 * zebra.h (ZEBRA_FLAG_STATIC): Add new flag for persistent route.
422
4232001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
424
425 * flap.c: File is removed.
426
427 * flap.c: Likewise.
428
429 * roken.h: Likewise.
430
431 * buffer.c (buffer_new): Remove type option to buffer_new().
432
4332001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
434
435 * zclient.c (zapi_ipv4_delete): Remove OLD_RIB part.
436
4372001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
438
439 * zebra-0.90 is released.
440
441 * command.c: Update Copyright year.
442
4432001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
444
445 * if.c (if_create): Register connected_free() function for
446 deletion.
447 (if_delete): Free connected information when the interface is
448 deleted.
449 (if_lookup_by_index): Fix argument type from int to unsigned int.
450 (connected_add): Keep list in order if old info found, essential
451 for repeatable operation in some daemons.
452
4532001-01-09 endo@suri.co.jp (Masahiko Endo)
454
455 * vty.c (vty_flush): When vty->statis is VTY_CLOSE do not add vty
456 read thread.
457
4582001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
459
460 * filter.c (access_list_delete): Access-list name is not freed.
461
462 * plist.c (prefix_list_delete): Prefix-list name is not freed.
463
4642000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
465
466 * zclient.c (zclient_start): Change to use UNIX domain
467 socket for zebra communication.
468
469 * vector.c (vector_init): vector_alloc and vector_data_alloc is
470 removed. All memory allocation count should be maintained by
471 XMALLOC and XFREE macros.
472
4732000-12-28 Kunihiro Ishiguro <kunihiro@zebra.org>
474
475 * zebra.h (ZEBRA_NEXTHOP_IFINDEX): Define ZEBRA_NEXTHOP_* values.
476
4772000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
478
479 * zebra.h (ZEBRA_ERR_RTEXIST): Make zebra error code to negative
480 value.
481
4822000-12-25 "Wataru Uno" <wataru@po.ntts.co.jp>
483
484 * vty.c (vtysh_read): Don't allocate new buffer because buffer is
485 allocated in vty_new ().
486
4872000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
488
489 * memory.h (enum): Add MTYPE_AS_FILTER_STR.
490
491 * command.c (config_write_terminal): Display "end" at the end of
492 configuration.
493
494 * plist.c (vty_prefix_list_install): Use AF_INET to determine
495 lenum length.
496
4972000-12-13 "Wataru Uno" <wataru@po.ntts.co.jp>
498
499 * buffer.c (buffer_flush_vty): If IOV_MAX defined in the System,
500 then all lines write by IOV_MAX.
501
5022000-12-12 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
503
504 * command.c (config_write_file): Robust method for writing
505 configuration file and recover from backing up config file.
506
5072000-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
508
509 * smux.c (smux_connect): More fail check.
510 (smux_trap): When SMUX connection is not established, do nothing.
511
5122000-11-28 Gleb Natapov <gleb@nbase.co.il>
513
514 * thread.c (thread_fetch): Execut event list first. Old event
515 list is renamed to ready list. With this change, event thread is
516 executed before any other thread.
517
518 * thread.h (struct thread_master): Add ready list.
519
5202000-11-28 Kunihiro Ishiguro <kunihiro@zebra.org>
521
522 * linklist.c (listnode_add_after): Add node right after the
523 listnode pointer.
524
5252000-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
526
527 * smux.h: Pass struct variable to WriteMethod.
528
5292000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
530
531 * if.c (if_lookup_address): When looking up interface with IP
532 address, Sometimes multiple interfaces will match. Now PtP
533 interfaces prevail in such a case which seem the right thing to
534 do: There will probably also be host routes which usually prevail
535 over network routes.
536
5372000-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
538
539 * smux.c (smux_trap): SMUX trap implementation.
540
5412000-11-19 Akihiro Mizutani <mizutani@dml.com>
542
543 * plist.c: Add automatic conversion function of an old rule.
544 ex.) 10.0.0.0/8 ge 8 -> 10.0.0.0/8 le 32
545
5462000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
547
548 * zclient.c (zebra_interface_add_read): Read hardware address when
549 hw_addr_len is greater than 0.
550
5512000-11-15 Akihiro Mizutani <mizutani@dml.com>
552
553 * plist.c: The rule of "len <= ge-value <= le-value"
554 was changed to "len < ge-value <= le-value".
555
5562000-11-09 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
557
558 * memory.[ch]: Added #define and functions for ospf6d.
559
560 * log.[ch]: some platform says that the data of used va_list
561 is undefined. Changed to hold list of va_list for each
562 vsnprintf.
563
5642000-11-07 Rick Payne <rickp@rossfell.co.uk>
565
566 * memory.h (enum): Add MTYPE_COMMUNITY_REGEXP.
567
5682000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
569
570 * command.c (config_exit): Fix bug of missing break after case
571 BGP_VPNV4_NODE.
572
5732000-10-30 Kunihiro Ishiguro <kunihiro@zebra.org>
574
575 * vector.c (vector_unset): Check i is not nevative.
576
5772000-10-24 Arkadiusz Miskiewicz <misiek@pld.org.pl>
578
579 * smux.c (smux_sock): Set terminating '\0'. Check address family.
580
581 * vty.c (vty_serv_sock_addrinfo): Set terminating '\0'. Use
582 gai_strerror. Check address family.
583
5842000-10-23 Jochen Friedrich <jochen@scram.de>
585
586 * smux.c: Use linklist rather than vector.
587 (smux_getnext): A SMUX subagent has to behave as if it manages the
588 whole SNMP MIB tree itself. It's the duty of the master agent to
589 collect the best answer and return it to the manager. See RFC 1227
590 chapter 3.1.6 for the glory details :-). ucd-snmp really behaves
591 bad here as it actually might ask multiple times for the same
592 GETNEXT request as it throws away the answer when it expects it in
593 a different subtree and might come back later with the very same
594 request.
595
5962000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
597
598 * command.c (cmd_init): Log related command are only installed for
599 terminal mode.
600
6012000-10-21 Kunihiro Ishiguro <kunihiro@zebra.org>
602
603 * Makefile.am (libzebra_a_SOURCES): Remove duplicated buffer.c.
604
605 * zebra.h: Remove #warn directive.
606
6072000-10-20 Kunihiro Ishiguro <kunihiro@zebra.org>
608
609 * keychain.c (keychain_init): Register "key chain" command to
610 KEYCHAIN_NODE and KEYCHAIN_KEY_NODE.
611
612 * vty.c (vty_end_config): Fix missing vty_cinfig_unlock for other
613 CONFIG_NODE.
614
615 * command.c (config_end): Likewise.
616
617 * keychain.c (keychain_get): Key is sorted by it's identifier
618 value.
619
6202000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
621
622 * linklist.c (list_delete_all_node): Call delete function if it is
623 defined.
624
625 * command.c (cmd_execute_command_strict): Add modification for
626 vtysh.
627 (cmd_execute_command_strict): Remove first argument cmdvec because
628 it is global varibale in command.c.
629
6302000-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
631
632 * command.c (cmd_init): Install
633 copy_runningconfig_startupconfig_cmd only in terminal mode.
634
635 * linklist.c (list_delete_node): Simplify the function.
636 (listnode_lookup): Renamed from list_lookup_node.
637
6382000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
639
640 * stream.h: Undef stream_read and stream_write without
641 parenthesis.
642
643 * newlist.c: File removed.
644
645 * newlist.h: Likewise.
646
647 * linklist.c (list_new): Remove list_init(). To allocate new
648 linked list, please use list_new().
649 (listnode_add): Remove list_add_node(). To add new node to linked
650 list, please use listnode_add().
651 (list_delete_by_val): Revemove fucntion.
652
6532000-10-16 Nobuaki Tanaka <nobby@po.ntts.co.jp>
654
655 * table.c (route_table_free): Reimplement route_table_free().
656
6572000-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
658
659 * keychain.c (keychain_get): Register key_delete_func to key
660 list's delete function. Use linklist.c instead of newlist.c.
661
6622000-10-04 Akihiro Mizutani <mizutani@dml.com>
663
664 * filter.c (access_list_remark): Add access-list's remark command.
665 (no_access_list): "no access-list 100 permit any" error message
666 bug is fixed.
667
6682000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
669
670 * memory.h (enum): Add MTYPE_SOCKUNION.
671
6722000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
673
674 * zebra-0.89 is released.
675
6762000-10-01 Kunihiro Ishiguro <kunihiro@zebra.org>
677
678 * linklist.c (list_add_node_head): Delete unused function.
679 (list_add_node_tail): Likewise.
680
6812000-09-26 Kunihiro Ishiguro <kunihiro@zebra.org>
682
683 * stream.c (stream_read_unblock): Add new function for unblocking
684 read.
685
6862000-09-26 Jochen Friedrich <jochen@nwe.de>
687
688 * smux.c (smux_register): Fix bug of can't register more than one
689 MIB with SMUX.
690
6912000-09-26 Makoto Otsuka <otsuka@inl.ntts.co.jp>
692
693 * vty.c (vty_close): Fix memory leak of sb_buffer.
694 (vty_new): Likewise.
695
6962000-09-21 steve@Watt.COM (Steve Watt)
697
698 * log.h: Do not declare zlog_priority[0] variable.
699
7002000-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
701
702 * linklist.h (struct _list ): Add member cmp for compare function.
703 (struct _list ): Member up is deleted
704
7052000-09-12 David Lipovkov <dlipovkov@OpticalAccess.com>
706
707 * if.c: Include RIP_API header when RIP API is enabled.
708
7092000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
710
711 * prefix.c (prefix_free): Siplify prefix_free().
712
713 * keychain.c (key_match_for_accept): strncmp check bug is fixed.
714
7152000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
716
717 * zebra.h: Merge roken.h into zebra.h.
718
7192000-09-05 Akihiro Mizutani <mizutani@dml.com>
720
721 * routemap.c (route_map_init_vty): Install route-map command to
722 RMAP_NODE.
723
7242000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
725
726 * thread.c (thread_get_id): Remove pthread related garbage.
727
728 * command.h (struct host): Likewise.
729
730 * zebra.h: Likewise.
731
7322000-08-20 Kunihiro Ishiguro <kunihiro@zebra.org>
733
734 * command.h (node_type ): Add AAA node for authentication.
735
736 * vty.c (vty_close): Do not close stdout.
737
7382000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
739
740 * vty.c (vty_init_vtysh): Added for vtysh.
741
742 * distribute.c (districute_list_prefix_all): Interface independent
743 filter can be set.
744 (distribute_list_all): Likewise.
745 (config_show_distribute): Display current distribute-list status
746 for "show ip protocols".
747
7482000-08-18 Akihiro Mizutani <mizutani@dml.com>
749
750 * command.c (config_terminal_no_length): no terminal monitor ->
751 terminal no monitor
752 (cmd_init): Do not install service_terminal_length_cmd into
753 ENABLE_NODE.
754
755 * vty.c (terminal_no_monitor): no terminal length -> terminal no
756 length.
757
7582000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
759
760 * zebra-0.88 is released.
761
7622000-08-17 Magnus Ahltorp <ahltorp@nada.kth.se>
763
764 * vty.h (struct vty ): Add iac_sb_in_progress and sb_buffer for
765 better IAC handling.
766
767 * vty.c (vty_telnet_option): Change telnet option handling.
768
7692000-08-15 Gleb Natapov <gleb@nbase.co.il>
770
771 * zclient.c (zclient_redistribute_unset): New function added.
772
7732000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
774
775 * zclient.c (zebra_interface_add_read): Change ifindex restore
776 size from two octet to four.
777 (zebra_interface_state_read): Likewise.
778 (zebra_interface_address_add_read): Likewise.
779
7802000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
781
782 * vty.c (vty_event): Use vector_set_index() instead of
783 vector_set().
784
7852000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
786
787 * zebra.h (ZEBRA_XXX_DISTANCE_DEFAULT): Define Default
788 Administrative Distance of each protocol.
789
7902000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
791
792 * if.h (struct interface ): Add new member bandwidth to struct
793 interface.
794
795 * zclient.c (zebra_interface_add_read): Fetch bandwidth value.
796 (zebra_interface_state_read): Likewise.
797
7982000-08-07 Gleb Natapov <gleb@nbase.co.il>
799
800 * routemap.c (route_map_event_hook): New hook route_map_event_hook
801 is added. This hook is called when route-map is changed. The
802 parameters passed to the hook are 'event' and 'route-map name'
803
804 * routemap.h: Add prototype for route_map_event_hook().
805
8062000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
807
808 * zclient.c (zebra_ipv4_route): zebra_ipv4_route(),
809 zebra_ipv4_add(), zebra_ipv4_delete() are removed.
810
811 * routemap.c (route_map_empty): Add new function.
812 (route_map_delete): Use route_map_index_delete() instead of
813 route_map_index_free().
814 (route_map_index_free): Function removed.
815
8162000-08-06 Gleb Natapov <gleb@nbase.co.il>
817
818 * routemap.c (route_map_index_delete): Add check for route-map is
819 empty or not.
820
8212000-08-03 Kunihiro Ishiguro <kunihiro@zebra.org>
822
823 * zclient.c (zebra_ipv4_add): Change socket arguemnt with struct
824 zclient.
825
8262000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
827
828 * zclient.h (struct zebra): Add obuf for output buffer.
829
830 * if.c: Remove #ifdef NRL enclosing if_nametoindex() and
831 if_indextoname().
832
8332000-08-02 David Lipovkov <davidl@nbase.co.il>
834
835 * if.h (IF_PSEUDO_UNSET): IF_PSEUDO related macro added.
836 (IF_UNKNOWN_SET): IF_UNKNOWN related macro deleted.
837
838 * if.c (interface_pseudo): Add "pseudo" command to interface node.
839 (no_interface_pseudo): Add "no pseudo" command to interface node.
840
841 * zclient.c (zebra_interface_add_read): Set pseudo flag when it is
842 send from zebra.
843
8442000-08-01 Kunihiro Ishiguro <kunihiro@zebra.org>
845
846 * zebra.h (ZEBRA_IPV4_NEXTHOP_LOOKUP): Add new message.
847 (ZEBRA_IPV6_NEXTHOP_LOOKUP): Likewise.
848
849 * vty.c (vty_serv_un): Use AF_UNIX for backward compatibility.
850
8512000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
852
853 * vty.c: Use vector for VTY server thread listing instead of
854 single value.
855
8562000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
857
858 * keychain.c (no_key_chain): "no key chain WORD" command is added.
859
8602000-07-29 Kunihiro Ishiguro <kunihiro@zebra.org>
861
862 * command.c (config_from_file): If command fail in
863 KEYCHAIN_KEY_NODE, down to KEYCHAIN_NODE.
864
865 * vty.h (struct vty ): Add index_sub member.
866
8672000-07-27 Akihiro Mizutani <mizutani@dml.com>
868
869 * if.c: Help strings updates.
870
8712000-07-11 Akihiro Mizutani <mizutani@dml.com>
872
873 * command.c (no_config_enable_password): Add "no enable password"
874 command.
875 (config_write_host): Display password string.
876
877 * routemap.c (route_map_delete_match): Add support for delete
878 match without argument.
879 (route_map_delete_set): Likewise.
880
8812000-07-09 Kunihiro Ishiguro <kunihiro@zebra.org>
882
883 * command.h (node_type ): Change KEYCHAIN_NODE and
884 KEYCHAIN_KEY_NODE place just before INTERFACE_NODE.
885
8862000-07-09 Jochen Friedrich <jochen@scram.de>
887
888 * smux.c (config_write_smux): Fixes the option to override OID and
889 password for SMUX.
890
8912000-07-09 Kunihiro Ishiguro <kunihiro@zebra.org>
892
893 * command.h (node_type ): Add SMUX_NODE for SMUX configuration.
894
8952000-07-09 Toshiaki Takada <takada@zebra.org>
896
897 * command.c: Sort descvec command's help.
898
899 * vty.c (vty_describe_command): Display '<cr>' at the end of
900 descriptions.
901
9022000-07-05 Toshiaki Takada <takada@zebra.org>
903
904 * command.c (cmd_ipv6_match), (cmd_ipv6_prefix_match): Fix bug
905 treatment of double colon.
906
9072000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
908
909 * zclient.h: Add zclient_redistribute_default_{set,unset}().
910
911 * keychain.c: New file for authentication key management.
912 * keychain.h: Likewise.
913
914 * tcpfilter.c: New file for TCP/UDP base filtering using ipfw or
915 ipchains.
916 * tcpfilter.h: Likewise.
917
918 * flap.h: New file for route flap dampening.
919 * flap.c: Likewise.
920
9212000-07-04 Toshiaki Takada <takada@zebra.org>
922
923 * filter.c (struct filter): Add exact flag.
924 (access_list): Add exact-match command.
925 (ipv6_access_list): Add exact-match command.
926
9272000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
928
929 * zebra.h (ZEBRA_REDISTRIBUTE_DEFAULT_ADD): New message for
930 request default route.
931
9322000-07-01 Hideaki YOSHIFUJI ($B5HF#1QL@(B) <yoshfuji@ecei.tohoku.ac.jp>
933
934 * smux.c: Add IPv6 smux connection code.
935
9362000-06-15 Kunihiro Ishiguro <kunihiro@zebra.org>
937
938 * vty.c (vty_complete_command): To cooperate readline library,
939 returned string is newly allocated. So some match function case
940 need, free of memory.
941
9422000-06-12 Akihiro Mizutani <mizutani@dml.com>
943
944 * distribute.c: Fix help strings.
945
9462000-06-11 Kunihiro Ishiguro <kunihiro@zebra.org>
947
948 * command.c (cmd_complete_command): Add check for vector_slot
949 (vline, index) is not NULL when calculating lcd.
950 (cmd_entry_function): First check variable arguemnt to prevent it
951 from completion.
952
9532000-06-10 Kunihiro Ishiguro <kunihiro@zebra.org>
954
955 * vty.h (struct vty ): Add output_count member for displaying
956 output route count. Remove arugment arg from output_func because
957 the value is passed by vty argument. Change output to output_rn.
958 Add output_clean function pointer member. Add output_type member.
959
9602000-06-10 Toshiaki Takada <takada@zebra.org>
961
962 * command.c (show_startup_config): Add "show startup-config"
963 command.
964
9652000-06-06 Akihiro Mizutani <mizutani@dml.com>
966
967 * filter.c: Fix help strings.
968
9692000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
970
971 * prefix.h (struct prefix_rd): New prefix structure for routing
972 distinguisher.
973 (struct prefix): Add padding to every prefix structure.
974
975
976 * routemap.c (route_map_add_match): When completely same match
977 statement exists, don't duplicate it.
978
9792000-06-05 Akihiro Mizutani <mizutani@dml.com>
980
981 * routemap.c: Change NAME to WORD.
982
983 * plist.c: Fix help strings.
984
9852000-06-02 Akihiro Mizutani <mizutani@dml.com>
986
987 * routemap.c: Fix route-map help strings.
988
9892000-06-01 Kunihiro Ishiguro <kunihiro@zebra.org>
990
991 * command.c (cmd_filter_by_completion): Fix CMD_VARARG treatment
992 to filter other non vararg commands.
993
994 * routemap.c (route_map_init_vty): Use install_default() for
995 install common commands into route-map node..
996
9972000-06-01 Akihiro Mizutani <mizutani@dml.com>
998
999 * command.h (OSPF_STR): Macro added.
1000
10012000-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1002
1003 * command.c (cmd_complete_command): LCD completion must not modify
1004 installed command string.
1005
1006 * plist.c (ipv6_prefix_list): Fix wrong syntax definition. Change
1007 X:X::X:X to X:X::X:X/M.
1008
10092000-05-31 Toshiaki Takada <takada@zebra.org>
1010
1011 * vty.c (show_history): New defun added.
1012
10132000-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1014
1015 * command.h (CMD_COMPLETE_LIST_MATCH): New define for completion
1016 list. CMD_COMPLETE_MATCH is used for LCD completion.
1017
1018 * vty.c (vty_complete_command): Matched string's LCD is completed.
1019
1020 * command.c (cmd_lcd): New function for calculate LCD of matched
1021 strings.
1022
10232000-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1024
1025 * command.c (install_default): config_write_terminal_cmd,
1026 config_write_file_cmd, config_write_memory_cmd are added to
1027 default node.
1028
1029 * memory.c (memory_init): Divide show memory command into each
1030 sort.
1031
1032 * command.c (cmd_init): config_write_terminal_cmd,
1033 config_write_file_cmd, config_write_memory_cmd are added to
1034 CONFIG_NODE.
1035
1036 * routemap.c (route_map_index_free): New function.
1037 (no_route_map_all): New DEFUN for "no route-map NAME".
1038
1039 * filter.c (no_access_list_all): New DEFUN for delete access-list
1040 with NAME.
1041 (no_ipv6_access_list_all): Likewise.
1042
10432000-05-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1044
1045 * plist.c: Change IPV6_PREFIX to X:X::X:X. When "any" is
1046 specified, user can not use "ge" and "le" statement.
1047
10482000-05-22 Thomas Molkenbur <tmo@datus.datus.com>
1049
1050 * routemap.c (route_map_add_set): Fix bug of next pointer missing.
1051
1052 * table.c (route_table_free): Like wise.
1053
10542000-05-22 Toshiaki Takada <takada@zebra.org>
1055
1056 * vty.c (vty_stop_input): Set history pointer to the latest one.
1057
1058 * vty.c (vty_hist_add): Do not add command line history when input
1059 is as same as previous one.
1060
10612000-05-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1062
1063 * memory.h (enum): Add MTYPE_ECOMMUNITY and MTYPE_ECOMMUNITY_VAL.
1064
10652000-05-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1066
1067 * command.h (node_type ): Add BGP_VPNV4_NODE.
1068
10692000-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1070
1071 * vty.c (vtysh_accept): Add cast of struct sockaddr * to bind
1072 argument. Reported by: Vesselin Mladenov <mladenov@netbg.com>.
1073
1074 * filter.c (ipv6_access_list): Add IPv6 prefix example instead of
1075 IPv4 example. Reported by: Love <lha@s3.kth.se>.
1076
1077 * command.c (cmd_complete_command): Make it sure last element of
1078 matchvec is NULL. This fix problem which cause crush in
1079 vty_complete_command(). Reported by: JINMEI Tatuya
1080 <jinmei@isl.rdc.toshiba.co.jp>.
1081
10822000-04-28 Love <lha@s3.kth.se>
1083
1084 * prefix.h (struct prefix): Add padding.
1085
10862000-04-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1087
1088 * command.c (show_version): Update copyright year.
1089
10902000-04-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1091
1092 * routemap.c (route_map_apply): When map is NULL, return deny.
1093
10942000-04-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1095
1096 * filter.c (access_list_apply): When access is NULL, return deny.
1097
1098 * plist.c (prefix_list_apply): When plist is NULL, return deny.
1099
11002000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1101
1102 * command.h (node_type ): Change RDISC_NODE to IRDP_NODE.
1103
11042000-04-18 Toshiaki Takada <takada@zebra.org>
1105
1106 * filter.[ch] (access_list_add_hook), (access_list_delete_hook):
1107 Add argument for hook function to give struct access_list *.
1108
11092000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1110
1111 * plist.c (prefix_list_entry_match): In case of le nor ge is
1112 specified, exact match is performed.
1113 (prefix_list_entry_match): Add any entry matching check.
1114
11152000-04-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1116
1117 * vty.c (exec_timeout): Separate timeout setting to minutes and
1118 seconds.
1119 (no_exec_timeout): Add "no exec-timeout" command.
1120
1121 * vty.h (VTY_TIMEOUT_DEFAULT): Change default value from 300 to
1122 600.
1123
11242000-03-31 Jochen Friedrich <jochen@scram.de>
1125
1126 * smux.h (SMUX_CLOSE): The SMUX_CLOSE PDU is implicit integer, so
1127 it is a primitive encoding and not constructed.
1128
11292000-03-28 Toshiaki Takada <takada@zebra.org>
1130
1131 * memory.[ch] (enum): Add MTYPE_OSPF_EXTERNAL_INFO.
1132
11332000-03-26 Love <lha@s3.kth.se>
1134
1135 * zclient.c (zclient_read): Add nbytes size check for
1136 ZEBRA_HEADER_SIZE. Check return value of steam_read ().
1137
11382000-03-26 Rick Payne <rickp@rossfell.co.uk>
1139
1140 * routemap.c: Add flexible route-map commands such as on-match
1141 next, on-match goto N.
1142
1143 * routemap.h: Likewise
1144
11452000-03-23 Adrian Bool <aid@u.net.uk>
1146
1147 * command.c (config_log_trap): Add new command "log trap
1148 PRIORITY".
1149
11502000-03-14 Toshiaki Takada <takada@zebra.org>
1151
1152 * memory.c (struct memory_list): Add Link List and Link Node
1153 to view.
1154
1155 * memory.h (enum): Remove MTYPE_OSPF_EXTERNAL_ROUTE.
1156
11572000-01-20 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1158
1159 * str.c (snprintf): Fix bug of calling sprintf instead of
1160 vsprintf.
1161
11622000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1163
1164 * memory.h (enum): Add MTYPE_RIP_PEER.
1165
11662000-01-15 Toshiaki Takada <takada@zebra.org>
1167
1168 * memory.h (enum): Add MTYPE_OSPF_CRYPT_KEY.
1169
11702000-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1171
1172 * command.h (node_type ): Add MASC_NODE for masc.
1173
11742000-01-09 Wang Jianliang <wangjl@soim.net>
1175
1176 * routemap.c (route_map_index_add): When route_map_index is not
1177 empty and insert new item at the head, it can cause core dump.
1178 Fix "if (index == map->head)" to "if (point == map->head).
1179 (route_map_add_set): If there is an old set command, override old
1180 set command with new one.
1181 (route_map_index_delete): Use while() instead of for for() for
1182 logical correctness.
1183
11841999-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1185
1186 * memory.h (enum): Add MTYPE_BGP_STATIC.
1187
11881999-12-23 Alex Zinin <zinin@amt.ru>
1189 * zebra.h, zclient.*: dynamic int up/down message
1190 support
1191
11921999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1193
1194 * thread.c (thread_cancel_event): Add a function for clean up
1195 events.
1196
11971999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1198
1199 * dropline.c: Delete file.
1200 dropline.h: Linewise.
1201
12021999-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1203
1204 * filter.c (access_list_filter_delete): Wrong pointer
1205 access->master was pointed out after access is freed. I store
1206 master value at the beginning of the function.
1207
12081999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1209
1210 * vty.c (exec_timeout): Change of VTY timeout affect to current
1211 VTY connection.
1212 (vty_accept): Instead of immediate exit() return -1.
1213
12141999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1215
1216 * vty.c (vty_configure_lock): Configuration lock function added.
1217 Only one VTY can use CONFI_NODE at the same time.
1218
1219 * log.c: Delete zvlog_* functions. Now zlog_* does the same
1220 thing.
1221
1222 * log.c (log_init): Function removed.
1223 (log_close): Likewise.
1224 (log_flush): Likewise.
1225 (log_open): Likewise.
1226
1227 * vty.c (terminal_monitor): Add new command.
1228 (no_terminal_monitor): Likewise.
1229
1230 * log.c (old_log): Function removed.
1231 (old_log2): Likewise.
1232 (old_log_warn): Likewise.
1233
12341999-12-04 Toshiaki Takada <takada@zebra.org>
1235
1236 * command.c (cmd_ipv6_match): New function added.
1237 (cmd_ipv6_prefix_match): Likewise.
1238
12391999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1240
1241 * command.c (cmd_ipv6_match):
1242
1243 * table.c: Delete #ifdef HAVE_MBGPV4.
1244
1245 * prefix.h (struct prefix): Add safi member.
1246 (struct prefix_ipv4): Likewise.
1247 (struct prefix_ipv6): Likewise.
1248
12491999-12-04 Rumen Svobodnikov <rumen@linux.tu-varna.acad.bg>
1250
1251 * memory.c (struct mstat): Revert to support MEMORY_LOG.
1252
12531999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1254
1255 * version.h: Bump up to 0.81c for testing new kernel codes.
1256
12571999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1258
1259 * thread.h (struct thread): Pthread support is disabled all
1260 platform.
1261
12621999-11-21 Michael Handler <handler@sub-rosa.com>
1263
1264 * Include <limits.h> and <strings.h> under SUNOS_5.
1265
12661999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1267
1268 * sockunion.c (in6addr_cmp): Enclosed by #define HAVE_IPV6
12691999-11-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1270
1271 * command.h (node_type ): Add BGP_IPV4_NODE and BGP_IPV6_NODE.
1272
12731999-11-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1274
1275 * command.c (disable): Add `disable' command.
1276
12771999-11-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1278
1279 * plist.c (vty_prefix_list_install): Add any check.
1280
12811999-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1282
1283 * command.h (node_type ): Add DUMP_NODE.
1284
12851999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1286
1287 * smux.c: Change default SMUX oid to compatible with gated.
1288
12891999-10-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1290
1291 * if_rmap.c: New file added.
1292
1293 * if_rmap.h: New file added.
1294
12951999-10-29 Alex Zinin <zinin@amt.ru>
1296
1297 * hash.c: add hash_free() function
1298
12991999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1300
1301 * hash.c (hash_clean): Add clean function.
1302
1303 * plist.c (prefix_list_reset): Add reset function.
1304
1305 * filter.c (access_list_reset): Add reset function.
1306
13071999-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1308
1309 * client.c: Merged with zclient.c.
1310 * client.h: Merged with zclient.h.
1311
13121999-10-15 Jordan Mendelson <jordy@wserv.com>
1313
1314 * md5.c: Imported from GNU C Library.
1315 * md5-gnu.h: Likewise.
1316
13171999-10-15 Jochen Friedrich <jochen@scram.de>
1318
1319 * smux.c (smux_getresp_send): SMUX_GETRSP codes improvement.
1320
13211999-10-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1322
1323 * smux.h: New file added.
1324
1325 * snmp.c: Rename to smux.c.
1326
13271999-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1328
1329 * command.c (cmd_execute_command_strict): Filter ambious commands.
1330 (cmd_filter_by_string): Change to return enum match_type.
1331
13321999-10-01 Toshiaki Takada <takada@zebra.org>
1333
1334 * vty.c (vty_describe_fold): New function which does VTY
1335 description line fold.
1336 * vty.c (vty_describe_command): Set description column.
1337
13381999-09-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1339
1340 * plist.c (prefix_list_init_ipv4): VTY user interface is improved.
1341
13421999-09-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1343
1344 * command.c (cmd_filter_by_string): Fix bug of CMD_IPV4 and
1345 CMD_IPV4_PREFIX check. Both return type must be exact_match.
1346
13471999-09-24 Toshiaki Takada <takada@zebra.org>
1348
1349 * command.c (cmd_filter_by_completion),
1350 (is_cmd_ambiguous): Check IPv4 address, IPv4 prefix and range
1351 parameter matches range.
1352
13531999-09-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1354
1355 * routemap.c (route_map_apply): Returm RM_DENYMATCH when no match
1356 is performed.
1357
13581999-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1359
1360 * vty.c (vty_read): Control-C stop VTY_MORE mode.
1361
13621999-09-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1363
1364 * command.h (node_type ): Add ACCESS_IPV6_NODE and
1365 PREFIX_IPV6_NODE.
1366
1367 * distribute.h: New file added.
1368
1369 * command.h (node_type ): Delete DISTRIBUTE_NODE.
1370
13711999-09-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1372
1373 * vty.c (vty_terminate_all): New function added for reload
1374 support.
1375
13761999-09-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1377
1378 * memory.h (enum): Add new type MTYPE_OSPF_EXTERNAL_ROUTE.
1379
13801999-08-31 Janos Farkas <chexum@shadow.banki.hu>
1381
1382 * vty.c (vty_read): Handle also 0x7f (alt-backspace), just like
1383 esc-ctrl-h (delete word backwards).
1384
13851999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1386
1387 * if.h: Add if_nametoindex for NRL.
1388
13891999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1390
1391 * if.c (if_create): New function.
1392
13931999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1394
1395 * snmp.c: New file.
1396
13971999-08-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1398
1399 * stream.c (stream_put): stream_memcpy () is changed to stream_put
1400 (). stream_get () is added.
1401
14021999-08-18 Toshiaki Takada <takada@zebra.org>
1403
1404 * memory.h (enum): Add MTYPE_OSPF_LSA_DATA.
1405
14061999-08-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1407
1408 * table.c (route_table_finish): add function frees table.
1409
14101999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1411
1412 * memory.h (enum): Add MTYPE_RTADV_PREFIX.
1413
14141999-08-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1415
1416 * if.h (struct interface ): hw_address, hw_address_len added.
1417
14181999-08-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1419
1420 * if.h (struct interface ): Change structure member if_data to
1421 info, index to ifindex.
1422
14231999-08-08 Rick Payne <rickp@rossfell.co.uk>
1424
1425 * routemap.c: Multi protocol route-map modification.
1426
1427 * routemap.c (route_map_apply): Route match process bug is fixed.
1428
14291999-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1430
1431 * thread.c (thread_fetch): When signal comes, goto retry point.
1432
14331999-08-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1434
1435 * Makefile.am: Add sockopt.c and sockopt.h
1436 * sockopt.c: New file.
1437 * sockopt.h: New file.
1438
14391999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1440
1441 * version.h (ZEBRA_VERSION): Release zebra-0.75
1442
14431999-08-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1444
1445 * memory.h (enum): Add MTYPE_RIPNG_AGGREGATE.
1446
14471999-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1448
1449 * sockunion.h: Add sockunion_getpeername ().
1450
14511999-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1452
1453 * version.h: Release zebra-0.74
1454
14551999-07-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1456
1457 * command.h (struct host): Delete lines from struct host. Add
1458 lines to struct vty.
1459
1460 * command.c: Delete `lines LINES'. Terminal display line settings
1461 should be done by `terminal length' command.
1462
14631999-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1464
1465 * memory.h (enum): MTYPE_OSPF_PATH are added.
1466
14671999-07-22 Toshiaki Takada <takada@zebra.org>
1468
1469 * memory.h (enum): MTYPE_OSPF_NEXTHOP is added.
1470
14711999-07-21 Toshiaki Takada <takada@zebra.org>
1472
1473 * linklist.c (list_add_node_prev), (list_add_node_next),
1474 (list_add_list): New function added.
1475
1476 * table.c (route_table_free): New function added.
1477
14781999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1479
1480 * plist.c (config_write_prefix): Set write flag when configuration
1481 is written.
1482
14831999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1484
1485 * prefix.c : prefix_cmp() added. change apply_mask() to
1486 apply_mask_ipv4(), and new apply_mask() added.
1487
14881999-07-14 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1489
1490 * prefix.c (prefix2str): append prefixlen.
1491
14921999-07-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1493
1494 * command.c (config_terminal): Change "config terminal" to
1495 "configure terminal". Reported by Georg Hitsch
1496 <georg@atnet.at>.
1497 (config_terminal_length): `terminal length <0-512>' is added. At
1498 this moment this command is only usef for vty interface.
1499 Suggested by Georg Hitsch <georg@atnet.at>.
1500
15011999-07-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1502
1503 * routemap.c (rulecmp): Add wrapper function of strcmp.
1504
15051999-07-08 Rick Payne <rickp@rossfell.co.uk>
1506
1507 * sockunion.c (inet_aton): Fix bug of inet_aton.
1508
15091999-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1510
1511 * version.h (ZEBRA_VERSION): Start zebra-0.73
1512
15131999-07-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1514
1515 * version.h: Bump up to 0.72.
1516
15171999-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1518
1519 * command.c (install_default): New function for install default
1520 commands to the node.
1521
1522 * memory.h (enum): MTYPE_NEXTHOP is added.
1523
15241999-07-01 <kunihiro@zebra.org>
1525
1526 * command.c (no_banner_motd): `no banner motd' command added.
1527
15281999-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1529
1530 * regex.c: Update to glibc-2.1.1's posix/regex.c
1531
1532 * regex-gnu.h: Update to glibc-2.1.1's posix/regex.h
1533
1534 * prefix.h (IPV4_ADDR_SAME): Macro added.
1535 (IPV6_ADDR_SAME): Likewise.
1536
15371999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1538
1539 * memory.h (enum): Add MTYPE_OSPF_VERTEX
1540
1541 * version.h: Bump up to 0.71.
1542
1543 * vty.c (vty_serv_sock_addrinfo): Use addrinfo function to bind
1544 VTY socket when IPv6 is enabled.
1545
15461999-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1547
1548 * vty.c (vty_serv_sock): Change vty_serv_sock determine which
1549 address family to bind.
1550
1551 * command.c: Add quit command.
1552
15531999-06-26 NOGUCHI kay <kay@dti.ad.jp>
1554
1555 * vty.c (vty_read_config): Fix bug of configuration file path
1556 detection.
1557
15581999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1559
1560 * version.h: Bump up to 0.70.
1561
15621999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1563
1564 * buffer.h (GETL): Remove GETL macro.
1565
1566 * version.h: Bump up to 0.69.
1567
15681999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1569
1570 * if.c (connected_add): Commented out connected_log.
1571
15721999-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1573
1574 * command.h (struct cmd_element ): strvec and descvec is combined
1575 into newstrvec.
1576
1577 * command.c (desc_make): Function removed.
1578 (desc_next): Function removed.
1579
1580 * command.h (struct cmd_element ): docvec is removed from struct
1581 cmd_element.
1582
15831999-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1584
1585 * command.c (cmd_execute_command): Remove command NULL check.
1586
1587 * command.h (struct cmd_element ): Add newstrvec entry to struct
1588 cmd_element.
1589 (DEFUN2): DEFUN2 macro is removed. DEFUN is extended to support
1590 (a|b|c) statement.
1591 (DESC): DESC macro is removed.
1592
1593 * vty.c (vty_complete_command): When return value is
1594 CMD_ERR_NO_MATCH, don't display error message.
1595
15961999-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1597
1598 * table.c (route_next_until): New function.
1599
1600 * version.h: Bump up to 0.68.
1601
16021999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1603
1604 * vty.c (vty_close): Free vty->buf when vty is closed.
1605
1606 * memory.h (enum): Add MTYPE_COMMUNITY_ENTRY and
1607 MTYPE_COMMUNITY_LIST.
1608
1609 * vty.h (struct vty ): Change buf from static length buffer to
1610 variable length buffer.
1611
1612 * vty.c (vty_ensure): New function added.
1613
16141999-06-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1615
1616 * command.h (node_type ): Add COMMUNITY_LIST_NODE.
1617
1618 * command.c (config_enable_password): Freeing host.enable bug is
1619 fixed.
1620 (config_enable_password): Add argc count check.
1621
16221999-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1623
1624 * version.h: Bump up to 0.67.
1625
16261999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1627
1628 * command.c (zencrypt): New function for encrypt password.
1629
1630 * command.h (struct host): Add password_encrypt and
1631 enable_encrypt.
1632
16331999-05-30 Jochen Friedrich <jochen@scram.de>
1634
1635 * command.h (struct host): New member encrypt is added for
1636 encrypted password.
1637
16381999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1639
1640 * vty.c: Remove all_digit_check function. Instead use all_digit.
1641
1642 * prefix.c (all_digit): New function for checking string is made
1643 from digit character.
1644
16451999-05-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1646
1647 * Makefile.am (libzebra_a_SOURCES): Add zclient.c.
1648 (noinst_HEADERS): Add zclient.h
1649
1650 * zclient.[ch]: New file for zebra client routine.
1651
1652 * memory.h (enum): Add MTYPE_ZEBRA.
1653
16541999-05-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1655
1656 * version.h (ZEBRA_VERSION): Update to 0.66.
1657
16581999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1659
1660 * buffer.h (GETC,GETW): Macro deleted.
1661
16621999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
1663
1664 * prefix.h (IPV4_NET0, IPV4_NET127): Macro added.
1665
16661999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1667
1668 * vty.c (service_advanced_vty): New command added.
1669 (no_service_advanced_vty): Likewise.
1670
16711999-05-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1672
1673 * vty.c (vty_auth): If advanced flag is set and enable password is
1674 not set, directly login to the ENABLE_NODE. This feature is
1675 originally designed and implemented by Stephen R. van den Berg
1676 <srb@cuci.nl>.
1677
1678 * command.h (host): Add advanced flag to struct host for advanced
1679 vty terminal interface.
1680
1681 * version.h (ZEBRA_VERSION): Update to 0.65 for next beta release.
1682
16831999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1684
1685 * command.h (node_type ): Add TABLE_NODE.
1686
1687 * vty.c (vty_telnet_option): Check host.lines value.
1688
1689 * command.c (config_lines): DEFUN for 'lines LINES' command.
1690
1691 * zebra.h: Include <sys/utsname.h> for uname().
1692 (RT_TABLE_MAIN): Defined as 0 if OS does not support multiple
1693 routing table.
1694
1695 * vty.c (vty_auth): Directly login to the ENABLE_NODE when enable
1696 password is not set.
1697 (vty_prompt): Get machine's hostname when hostname is not set.
1698
16991999-05-11 James Willard <james@whispering.org>
1700
1701 * command.c (config_exit): Close connection when `exit' command is
1702 executed at ENABLE_NODE.
1703
17041999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1705
1706 * vty.c (vty_stop_input): `C-c' key change node to ENABLE_NODE.
1707
1708 * command.c (cmd_execute_command_strict): Matched command size
1709 check added.
1710 (cmd_make_desc_line): New function for DEFUN2.
1711
1712 * command.h (struct cmd_element ): Add descsize.
1713
17141999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1715
1716 * command.h (struct cmd_element ): Remame descvec to docvec.
1717 (struct cmd_element ): Add descvec for new description system.
1718
1719 * command.c (desc_make): Check cmd->descvec.
1720
17211999-05-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1722
1723 * memory.h (enum): Add MTYPE_CLUSTER, MTYPE_CLUSTER_VAL.
1724
17251999-05-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1726
1727 * version.h (ZEBRA_VERSION): Bump up to 0.64 for next beta
1728 release.
1729
17301999-05-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1731
1732 * linklist.c (list_delete_all_node): bug fix.
1733 previous code loses current position when node
1734 is deleted.
1735
17361999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1737
1738 * command.h (DESC): Macro added.
1739 (struct cmd_element2): Delete struct cmd_element2.
1740
1741 * plist.c (prefix_list): Sequential number option check is added.
1742
17431999-05-02 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1744
1745 * log.c (zvlog_{debug,info,notice,warn,err}): have been
1746 added. now we can log both console and file, but still
1747 need some fix about config write.
1748
17491999-05-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1750
1751 * log.c (zvlog_debug): Fix yasu's change.
1752
17531999-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1754
1755 * plist.c (prefix_list): Fix typo.
1756
17571999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1758
1759 * Set version to 0.63 for first beta package.
1760
17611999-04-27 Carlos Barcenilla <barce@frlp.utn.edu.ar>
1762
1763 * prefix.c (str2prefix_ipv4): Fix prefix length check.
1764 (str2prefix_ipv6): Likewise.
1765
17661999-04-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1767
1768 * memory.h (enum): Add MTPYE_PREFIX_LIST and
1769 MTYPE_PREFIX_LIST_ENTRY.
1770
1771 * command.h (node_type ): Add PREFIX_NODE.
1772
17731999-04-25 Carlos Barcenilla <barce@frlp.utn.edu.ar>
1774
1775 * command.c: ALIAS (config_write_memory_cmd) and ALIAS
1776 (copy_runningconfig_startupconfig_cmd) is added.
1777
1778 * table.c (route_node_lookup): Unused match variable deletion.
1779
17801999-04-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1781
1782 * Makefile.am (libzebra_a_SOURCES): plist.c added.
1783 (noinst_HEADERS): plist.h added.
1784
1785 * plist.c, plist.h: New file added.
1786
1787 * memory.h (enum): Rename MTYPE_AS_PASN to MTYPE_AS_STR.
1788 * memory.c: Likewise.
1789
17901999-04-19 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
1791
1792 * command.c (show_version): `show version' command added.
1793
17941999-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1795
1796 * prefix.c (str2prefix_ipv6): Prefix length overflow check.
1797
17981999-04-19 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
1799
1800 * prefix.c (str2prefix_ipv4): Prefix length overflow check.
1801
18021999-04-19 Alex Bligh <amb@gxn.net>
1803
1804 * prefix.c (sockunion2hostprefix): Function added.
1805 (sockunion2prefix): Address family was not set. Now it is set.
1806
1807 * vty.c: VTY access-class command is added.
1808
18091999-04-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1810
1811 * memory.c: Change xmalloc to zmalloc. xcalloc, xrealloc, xfree,
1812 xstrdup are likewise.
1813
18141999-04-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1815
1816 * thread.c: Add thread_execute for other routing daemon.
1817 OSPF tasks need to be generated by "sheduled" and "executed".
1818
18191999-04-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1820
1821 * buffer.c: Rewrite buffer_write and buffer_flush related
1822 functions for fixing bugs. Reason of the problem and fix is
1823 suggested by Alex Bligh <amb@gxn.net>.
1824
18251999-04-12 Alex Bligh <amb@gxn.net>
1826
1827 * command.c (cmd_entry_function_descr): Added for variable
1828 argument help display.
1829
18301999-04-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1831
1832 * regex.c, regex-gnu.h: Imported from GNU sed-3.02 distribution.
1833
18341999-03-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1835
1836 * stream.c: stream_fifo_free bug is fixed.
1837
18381999-03-19 Toshiaki Takada <takada@zebra.org>
1839
1840 * stream.c (stream_strncpy): Added for getting any length bytes
1841 from stream.
1842
18431999-03-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1844
1845 * version.h (ZEBRA_BUG_ADDRESS): New macro added.
1846
18471999-03-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1848
1849 * buffer.c (buffer_flush_window): If ep is same as buffer's size
1850 length and lp is overrun one octet.
1851
18521999-03-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1853
1854 * vty.h: add VTY's timeout function.
1855
18561999-03-05 <kunihiro@zebra.org>
1857
1858 * command.h (node_type ): Add OSPF6_node.
1859
18601999-03-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1861
1862 * zebra.h: Check HAVE_SYS_SELECT_H when include <sys/select.h>
1863
18641999-03-03 Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>
1865
1866 * zebra.h: Include <net/if_var.h> if it exists.
1867
18681999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1869
1870 * getopt.[ch],getopt1.c: Sync with glibc-2.1.
1871
1872 * log.c (zlog): Tempolary ZLOG_STDOUT feature added.
1873
1874 * command.h: Include vector.h and vty.h
1875
18761999-02-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1877
1878 * routemap.h (struct route_map_rule_cmd): Add prefix arguemnt.
1879
1880 * routemap.c (route_map_apply_index): Add prefix argument.
1881 (route_map_apply): Likewise.
1882
1883 * memory.h (enum): Add MTYPE_ROUTE_MAP_COMPILED.
1884
1885 * stream.c: Add stream_fifo related functions.
1886
18871999-02-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1888
1889 * daemon.c: Return integer value. File descriptor close is added.
1890
1891 * memory.h (enum): add MTYPE_OSPF_LSA.
1892
18931999-02-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1894
1895 * rsh.c: Remove empty file.
1896
18971999-02-22 <kunihiro@zebra.org>
1898
1899 * routemap.c: Add add/delete hook to route_map_master.
1900
19011999-02-19 Peter Galbavy <Peter.Galbavy@knowledge.com>
1902
1903 * str.[ch] added to supply wrappers for snprintf(), strlcat() and
1904 strlcpy on system without these.
1905
19061999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1907
1908 * syslog support added
1909
19101999-02-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1911
1912 * filter.c (access_list_add_hook): added for hook function management.
1913 * filter.c (access_list_delete_hook): Likewise.
1914
19151999-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1916
1917 * stream.c: New file.
1918 * stream.h: New file.
1919 * Divide stream related fucntions from buffer.[ch] into stream.[ch].
1920
19211999-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1922
1923 * memory.h (enum): add MTYPE_STREAM, MTYPE_STREAM_DATA
1924
1925 * buffer.c (stream_new): Set MTYPE_STREAM to XMALLOC argument.
1926
19271998-12-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1928
1929 * routemap.c: route_map_index_delete() added.
1930
19311998-12-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1932
1933 * buffer.c (buffer_empty): check cp instead of sp.
1934
19351998-12-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1936
1937 * radix.[ch]: Deleted.
1938
19391998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1940
1941 * buffer.c: Prototype fixes.
1942 * prefix.c: Likewise.
1943 * sockunion.c: Likewise.
1944 * sockunion.h: Likewise.
1945
19461998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1947
1948 * vty.c (vty_read): DELETE key works as vty_delete_char.
1949
19501998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1951
1952 * log.c (time_print): chane %y to %Y.
1953
19541998-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1955
1956 * distribute.c: new file.
1957
19581998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1959
1960 * filter.c: Remove all of struct prefix_{ipv4,ipv6} and add
1961 complete support of IPv6 access list.
1962
1963 * command.c (config_write_element): function delete.
1964 (config_write_host): function add. password and enable password
1965 isn't printed to vty interface.
1966
19671998-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1968
1969 * filter.c: Change prefix_ipv4 to prefix and add support of
1970 prefix_ipv6 filtering.
1971
19721998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1973
1974 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6 inet6-apps
1975 header includes.
1976
19771998-12-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1978
1979 * log.c (log_flush): fix function name typo.
1980
19811998-12-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1982
1983 * memory.h: OSPF memory type is added.
1984
19851998-11-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1986
1987 * command.c (sort_node): add sort_node() for pretty printing of
1988 command on vty interface.
1989 (config_password): delete the restriction of charaster of password
1990 string.
1991
19921998-09-05 Kunihiro Ishiguro <kunihiro@debian.zebra.org>
1993
1994 * prefix.c (prefix_ipv4_any): add prefix_ipv4_any().
1995
19961998-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1997
1998 * network.h: New file.
1999
20001998-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
2001
2002 * vty.c (vty_will_echo): function name change from vty_off_echo.
2003
20041998-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2005
2006 * buffer.h: add PUTC,PUTW,PUTL macros.
2007
20081998-07-22 Kunihiro Ishiguro <kunihiro@zebra.org>
2009
2010 * route.[ch]: renamed to prefix.[ch]
2011
20121998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2013
2014 * prefix_in, prefix_in6 is replaced by prefix_ipv4, prefix_ipv6.
2015
2016 * Makefile.am: @INCLUDES@ is deleted from INCLUDES.
2017
20181998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2019
2020 * host.[ch]: merged with command.[ch]
2021
20221998-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2023
2024 * Makefile.am (libzebra_a_SOURCES): add route.c to libzebra_a_SOURCES.
2025
20261998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2027
2028 * route.c (str2prefix): str2prefix () is gone.
2029
20301998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2031
2032 * vty.c (vty_read_config): change CONDIR to SYSCONFDIR.
2033
2034 * .cvsignore: add file.
2035
2036 * memory.c (xerror): add arguent `type' and `size'.
2037
2038 * socket.c: deleted.
2039
20401998-05-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2041
2042 * vector.c: malloc,free,realloc -> XMALLOC,XFREE,XREALLOC.
2043 * linklist.c: same as above.
2044
20451998-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2046
2047 * filter.[ch]: added.
2048
20491998-04-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2050
2051 * vty.c (config_who): return CMD_SUCCESS
2052
20531998-04-01 Jochen Friedrich <jochen@scram.de>
2054
2055 * table.c (route_dump_node): route_dump_node is IPv6 specific
2056 function so move #ifdef to the end of route_dump_node ().
2057
20581998-03-05 "Hannes R. Boehm" <hannes@boehm.org>
2059
2060 * if.c: DEFUN(interface_desc) added.
2061
20621998-03-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2063
2064 * if.c: separated from ripd/rip_interface.c
2065
20661998-03-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2067
2068 * thread.[ch] : added.
2069
20701998-02-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2071
2072 * vty.c (vty_delete_char): fix size bug.
2073 (vty_backward_pure_word): function added.
2074 (vty_read): ESC + 'f' perform vty_forward_word.
2075 (vty_read): ESC + 'b' perform vty_backward_word.
2076
20771998-02-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2078
2079 * radix.c (radix_lookup_rt): add mask check.
2080 (radix_delete_duproute): add mask check.
2081
20821998-02-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2083
2084 * command.c (config_write_file): fix vty -> file_vty.
2085
20861998-02-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2087
2088 * command.c (cmd_filter_ambiguous): add complex type treatment.
2089
20901998-02-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2091
2092 * vty.c (vty_time_print): function added.
2093 (vty_complete_command): now [...] element isn't shown by completion.
2094
20951998-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2096
2097 * command.c : change from cmd_install_node() to install_node().
2098
20991998-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
2100
2101 * route.[ch]: struct rt{} is replaced by struct prefix{}.
2102
21031998-01-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2104
2105 * command.c (cmd_execute_command): check command length.
2106
2107 * timer.c (zebra_timer_set): add zebra_timer_set.
2108
21091998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2110
2111 * command.h (node_type ): add ZEBRA_NODE.
2112
2113 * command.c (config_exit): add RIP_NODE.
2114 (config_write_file): add RIP_NODE.
2115
21161998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2117
2118 * print_version.c (print_version): Now Copyright is 1996-1998.
2119
2120 * sockunion.c (sockunion_log): moved from ../zebra/route.c
2121
21221997-12-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2123
2124 * host.c (config_logfile): change 'log PATH' to 'logfile PATH'.
2125
2126 * sockunion.c (sockunion_sameprefix): add same prefix for
2127 sockunion.
2128
21291997-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2130
2131 * radix.[ch] : are moved from ../zebra directroy.
2132
2133 * command.c (config_from_file): if command execution failed down
2134 level to CONFIG_NODE.
2135
2136 * host.c: config_log function which enable 'log FILENAME' command.
2137
21381997-12-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2139
2140 * vty.c: add vty_transpose_chars (). Now you can use '^T' to
2141 transpose character.
2142
2143 * command.c: cmd_cmdsize add, this is useful to check incomplete
2144 command.
2145
21461997-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2147
2148 * fd.h: add family for address family
2149
21501997-12-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2151
2152 * command.o
2153 * vty.o
2154 * host.o is moved from ../zebra
2155
21561997-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2157
2158 * make library directory.
2159