--------------------- PatchSet 822 Date: 2004/11/09 01:54:03 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-09 Paul Jakma * bgp_nexthop.c: collapse bgp_connected_ipvX, bgp_nexthop_cache_ipvX and cache{1,2}.. into arrays of tables and hence collapse bgp_scan_ipv{4,6} into a single bgp_scan function. Tested, though a long time ago (and this change was hand-merged). Members: bgpd/ChangeLog:1.30->1.31 bgpd/bgp_nexthop.c:1.8->1.9 --------------------- PatchSet 823 Date: 2004/11/10 15:40:09 Author: ajs Branch: HEAD Tag: (none) Log: Remove unused dont_more variable in vty_flush and add return 0 to vtysh_write. Members: lib/vty.c:1.26->1.27 --------------------- PatchSet 824 Date: 2004/11/10 22:02:05 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-10 Andrew J. Schorr * redhat/quagga.spec.in: add comments showing how to get gcc verbosity Members: ChangeLog:1.68->1.69 redhat/quagga.spec.in:1.20->1.21 --------------------- PatchSet 825 Date: 2004/11/11 14:03:39 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-11 Andrew J. Schorr * vtysh.c: (vtysh_client_execute) Fix flaws in detecting trailing '\0' chars and command return code. Members: vtysh/ChangeLog:1.26->1.27 vtysh/vtysh.c:1.35->1.36 --------------------- PatchSet 826 Date: 2004/11/12 09:05:00 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-12 Paul Jakma * configure.ac: Fix AC_CONFIG_FILES, the chmod seems to run for every input file, should be only be for vtysh/extract.pl, so that should be a seperate AC_CONFIG_FILES. Members: ChangeLog:1.69->1.70 configure.ac:1.74->1.75 --------------------- PatchSet 827 Date: 2004/11/12 09:27:04 Author: paul Branch: HEAD Tag: (none) Log: - urg, fix the missing close bracket from previous commit Members: configure.ac:1.75->1.76 --------------------- PatchSet 828 Date: 2004/11/12 09:44:03 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-12 Paul Jakma * INSTALL: update-autotools, autoreconf -i will install this, remove the file so it always matches the autoconf which created configure (ie the quagga snapshot producing host). Members: .cvsignore:1.9->1.10 ChangeLog:1.70->1.71 INSTALL:1.1->1.2(DEAD) --------------------- PatchSet 829 Date: 2004/11/12 10:30:21 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-12 Paul Jakma * INSTALL.quagga.txt: Some quagga specific INSTALL notes. * README: s/GNU Zebra/Quagga/ and refer to IS-IS support. Members: ChangeLog:1.71->1.72 INSTALL.quagga.txt:INITIAL->1.1 README:1.1->1.2 --------------------- PatchSet 830 Date: 2004/11/12 10:52:19 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-12 Paul Jakma * ospf_ia.c: (process_summary_lsa) Only an ABR has any reason to ignore stub area summary default. Even so it seems a strange check, add a comment to that effect. Members: ospfd/ChangeLog:1.68->1.69 ospfd/ospf_ia.c:1.4->1.5 --------------------- PatchSet 831 Date: 2004/11/15 00:45:44 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-15 Paul Jakma * routeserver.texi: Strip ctrl-M from line endings, note by sigma@smx.pair.com Members: doc/ChangeLog:1.20->1.21 doc/routeserver.texi:1.1->1.2 --------------------- PatchSet 832 Date: 2004/11/15 11:48:37 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-15 Paul Jakma * ospf_{apiserver,te}.c: ospf_lsa_free's should be ospf_lsa_unlock. Members: ospfd/ChangeLog:1.69->1.70 ospfd/ospf_apiserver.c:1.12->1.13 ospfd/ospf_te.c:1.6->1.7 --------------------- PatchSet 833 Date: 2004/11/15 15:34:50 Author: gdt Branch: HEAD Tag: (none) Log: Add $Id:$. Add 'philosophy' note about balance between modern and being ok for those tracking stable. question 4.7-4 as a texinfo version (no such nomenclature on texinfo site - something specific to some Linux distribution?). Note that NetBSD provides texinfo 4.6 in the base system. Members: INSTALL.quagga.txt:1.1->1.2 --------------------- PatchSet 834 Date: 2004/11/15 16:12:32 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-15 Andrew J. Schorr * memory.c: (zerror) Use zlog_err instead of fprintf to stderr. Instead of exiting, log currenty memory usage and then abort. (log_memstats) New function to log memory statistics, called by zerror. (show_memory_all) Loop over new mlists array instead of calling show_memory_vty separately for each memory_list. Members: lib/ChangeLog:1.75->1.76 lib/memory.c:1.5->1.6 --------------------- PatchSet 835 Date: 2004/11/15 17:26:47 Author: gdt Branch: HEAD Tag: (none) Log: Note that either BSD make or GNU make works, and note versions. Adjust required texinfo version to 4.7 from 4.7-4. Clarify quagga.info build process. Members: INSTALL.quagga.txt:1.2->1.3 --------------------- PatchSet 836 Date: 2004/11/15 17:29:11 Author: gdt Branch: HEAD Tag: (none) Log: Make explicit that bumping required tool versions needs thought. Members: HACKING:1.10->1.11 --------------------- PatchSet 837 Date: 2004/11/15 18:51:15 Author: gdt Branch: HEAD Tag: (none) Log: Rationalize CMSG_SPACE usage: in lib/zebra.h, ensure that RFC3542-required CMSG_SPACE and CMSG_LEN are defined. Warn if alignment assumptions are made, since they are i386-centric. in lib/sockopt.h, declare that sockopt sizes are without CMSG_SPACE-required padding - just simple sizeof. in ospfd/ospf_packet.c, simply use CMSG_SPACE This should remove all instances of CMSG_ALIGN from the source code. This is a nonstandard, though rational, construct; quagga should use only those defines in RFC3542. Members: lib/ChangeLog:1.76->1.77 lib/sockopt.h:1.9->1.10 lib/zebra.h:1.23->1.24 ospfd/ChangeLog:1.70->1.71 ospfd/ospf_packet.c:1.51->1.52 --------------------- PatchSet 838 Date: 2004/11/15 19:23:47 Author: gdt Branch: HEAD Tag: (none) Log: Note that Id:$ should be included in all files. Members: HACKING:1.11->1.12 --------------------- PatchSet 839 Date: 2004/11/15 19:43:16 Author: ajs Branch: HEAD Tag: (none) Log: Note that autoreconf should be invoked as 'autoreconf -i'. Members: INSTALL.quagga.txt:1.3->1.4 --------------------- PatchSet 840 Date: 2004/11/15 21:56:53 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-15 Paul Jakma * quagga.info: Add generated file to CVS, as it requires most recent texinfo to build, until such time as texinfo 4.7 is more prevalent. Members: doc/.cvsignore:1.11->1.12 doc/ChangeLog:1.21->1.22 doc/quagga.info:INITIAL->1.1 --------------------- PatchSet 841 Date: 2004/11/16 14:25:30 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-16 Andrew J. Schorr * memory.h: Fix prototype for memory_init(). * memory.c: Declare many functions and data structures static instead of global. Fix prototype for memory_init(). Members: lib/ChangeLog:1.77->1.78 lib/memory.c:1.6->1.7 lib/memory.h:1.8->1.9 --------------------- PatchSet 842 Date: 2004/11/17 06:58:31 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-17 Paul Jakma * INSTALL.quagga.txt: texinfo version corrected, so section on that 4.7-x being unknown is not needed. Members: ChangeLog:1.72->1.73 INSTALL.quagga.txt:1.4->1.5 --------------------- PatchSet 843 Date: 2004/11/17 17:59:52 Author: gdt Branch: HEAD Tag: (none) Log: add note about alignment in LS updates due to opaque LSAs. Members: ospfd/OSPF-ALIGNMENT.txt:INITIAL->1.1 --------------------- PatchSet 844 Date: 2004/11/19 06:41:49 Author: hasso Branch: HEAD Tag: (none) Log: Make quagga.info in cvs actually useful for those who haven't latest makeinfo: * Don't attempt to generate it after every ./configure. * Don't remove it while cleaning up. Members: ChangeLog:1.73->1.74 configure.ac:1.76->1.77 doc/ChangeLog:1.22->1.23 doc/Makefile.am:1.7->1.8 --------------------- PatchSet 845 Date: 2004/11/19 18:29:22 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-19 Andrew J. Schorr * sockopt.c: (setsockopt_so_recvbuf) Stop error message from being printed every time. Members: lib/ChangeLog:1.78->1.79 lib/sockopt.c:1.12->1.13 --------------------- PatchSet 846 Date: 2004/11/19 23:40:16 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-19 David Young * log.c: (safe_strerror) New function: safe wrapper for strerror. Members: lib/ChangeLog:1.79->1.80 lib/log.c:1.7->1.8 lib/log.h:1.5->1.6 --------------------- PatchSet 847 Date: 2004/11/19 23:43:10 Author: ajs Branch: HEAD Tag: (none) Log: Fix previous change to use new function safe_strerror instead of strerror. Members: lib/sockopt.c:1.13->1.14 --------------------- PatchSet 848 Date: 2004/11/20 02:06:59 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-19 Andrew J. Schorr * global: Replace strerror with safe_strerror. And vtysh/vtysh.c needs to include "log.h" to pick up the declaration. Members: ChangeLog:1.74->1.75 bgpd/bgp_network.c:1.8->1.9 bgpd/bgp_packet.c:1.10->1.11 isisd/isis_network.c:1.5->1.6 isisd/modified/thread.c:1.1->1.2 isisd/modified/vty.c:1.1->1.2 lib/buffer.c:1.6->1.7 lib/command.c:1.24->1.25 lib/memory.c:1.7->1.8 lib/pid_output.c:1.5->1.6 lib/privs.c:1.6->1.7 lib/smux.c:1.12->1.13 lib/sockopt.c:1.14->1.15 lib/sockunion.c:1.7->1.8 lib/thread.c:1.11->1.12 lib/vty.c:1.27->1.28 ospf6d/ospf6_lsa.c:1.11->1.12 ospf6d/ospf6_network.c:1.6->1.7 ospf6d/ospf6_zebra.c:1.8->1.9 ospfclient/ospf_apiclient.c:1.2->1.3 ospfd/ospf_api.c:1.1->1.2 ospfd/ospf_apiserver.c:1.13->1.14 ospfd/ospf_network.c:1.6->1.7 ospfd/ospf_opaque.c:1.10->1.11 ospfd/ospf_packet.c:1.52->1.53 ospfd/ospf_te.c:1.7->1.8 ripd/rip_interface.c:1.22->1.23 ripd/ripd.c:1.33->1.34 ripngd/ripng_interface.c:1.12->1.13 ripngd/ripngd.c:1.13->1.14 vtysh/vtysh.c:1.36->1.37 zebra/if_ioctl.c:1.4->1.5 zebra/if_ioctl_solaris.c:1.4->1.5 zebra/if_proc.c:1.2->1.3 zebra/if_sysctl.c:1.1->1.2 zebra/interface.c:1.18->1.19 zebra/ioctl_solaris.c:1.3->1.4 zebra/ipforward_proc.c:1.4->1.5 zebra/ipforward_solaris.c:1.5->1.6 zebra/irdp_interface.c:1.7->1.8 zebra/irdp_main.c:1.7->1.8 zebra/irdp_packet.c:1.6->1.7 zebra/kernel_socket.c:1.17->1.18 zebra/rt_ioctl.c:1.1->1.2 zebra/rt_netlink.c:1.24->1.25 zebra/rtadv.c:1.15->1.16 zebra/rtread_getmsg.c:1.1->1.2 zebra/rtread_proc.c:1.1->1.2 zebra/rtread_sysctl.c:1.1->1.2 zebra/zserv.c:1.20->1.21 --------------------- PatchSet 849 Date: 2004/11/22 18:06:59 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-22 Paul Jakma * bgpd.8: escape -/+ signs, reported by ESR to bug-zebra. Members: doc/ChangeLog:1.23->1.24 doc/bgpd.8:1.4->1.5 --------------------- PatchSet 850 Date: 2004/11/22 20:14:33 Author: gdt Branch: HEAD Tag: (none) Log: Note OpenBSD versions (thanks to Gernot W. Schmied). Note that texinfo is not really needed, since quagga.info is in CVS, and explain the situation. Members: INSTALL.quagga.txt:1.5->1.6 --------------------- PatchSet 851 Date: 2004/11/23 12:21:16 Author: gdt Branch: HEAD Tag: (none) Log: note that OpenBSD versions are for 3.6. Members: INSTALL.quagga.txt:1.6->1.7 --------------------- PatchSet 852 Date: 2004/11/23 17:19:21 Author: gdt Branch: HEAD Tag: (none) Log: Note C99 requirement. Members: INSTALL.quagga.txt:1.7->1.8 --------------------- PatchSet 853 Date: 2004/11/23 17:35:08 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-23 Andrew J. Schorr * log.c: (vzlog) Take a single va_list argument and use va_copy as necessary for multiple traversals. (zlog) Pass only one va_list to vzlog. (zlog_*,plog_*) Use a macro for boilerplate code; pass only one va_list to vzlog. (zlog_set_file) Remove unused 2nd argument (flags). (zlog_save_cwd,zlog_get_cwd,zlog_free_cwd) Remove unused functions. * log.h: Remove ZLOG_*_INDEX defines (no longer used). Remove unused 2nd argument from zlog_set_file prototype. Fix prototype for zlog_rotate. * command.c: (config_log_file) Remove unused 2nd arg to zlog_set_file. * vty.c: (vty_out) Fix stdarg usage to perform multiple traversals properly. (vty_log) Must use va_copy for multiple traversals of va_list arg. Members: lib/ChangeLog:1.80->1.81 lib/command.c:1.25->1.26 lib/log.c:1.8->1.9 lib/log.h:1.6->1.7 lib/vty.c:1.28->1.29 --------------------- PatchSet 854 Date: 2004/11/23 18:19:14 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-23 Andrew J. Schorr * sigevent.c: (signal_init) Set up some default signal handlers so that processes will issue an error message before terminating or dumping core. (trap_default_signals) New function to set up signal handlers for various signals that may kill the process. (exit_handler) Call zlog_signal, then _exit. (core_handler) Call zlog_signal, then abort. * log.h: Declare new function zlog_signal. * log.c: (zlog_signal) New function to log information about a received signal before the process dies. Try to log a backtrace also. (quagga_signal_handler,signal_set) Should be static. Members: lib/ChangeLog:1.81->1.82 lib/log.c:1.9->1.10 lib/log.h:1.7->1.8 lib/sigevent.c:1.3->1.4 --------------------- PatchSet 855 Date: 2004/11/24 05:53:53 Author: paul Branch: HEAD Tag: (none) Log: 2004-11-24 Paul Jakma * TODO: Add source routing, zebra filtering and lib/ documenting. Members: ChangeLog:1.75->1.76 TODO:1.4->1.5 --------------------- PatchSet 856 Date: 2004/11/24 17:14:49 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-24 Andrew J. Schorr * zassert.h: New header file to declare a quagga-specific assert macro. * log.c: (_zlog_assert_failed) New function called when assert fails to log the error and abort. * zebra.h: Include "zassert.h" instead of . * regex.c: Include "zassert.h" instead of . * dict.c: Include "zassert.h" instead of . Members: isisd/ChangeLog:1.27->1.28 isisd/dict.c:1.2->1.3 lib/ChangeLog:1.82->1.83 lib/log.c:1.10->1.11 lib/regex.c:1.2->1.3 lib/zassert.h:INITIAL->1.1 lib/zebra.h:1.24->1.25 --------------------- PatchSet 857 Date: 2004/11/24 18:05:15 Author: ajs Branch: HEAD Tag: (none) Log: In zlog_signal, change type of size since backtrace actually returns an int. Members: lib/log.c:1.11->1.12 --------------------- PatchSet 858 Date: 2004/11/24 18:20:30 Author: ajs Branch: HEAD Tag: (none) Log: In zlog_signal, should probably check the return code from backtrace, just to be safe. Members: lib/log.c:1.12->1.13 --------------------- PatchSet 859 Date: 2004/11/25 16:07:53 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-25 Andrew J. Schorr * pid_output.c: (pid_output_lock) Fix 2 bugs: when locking, should set l_whence to SEEK_SET, not SEEK_END. And after writing new pid to file, must ftruncate to eliminate any extraneous bytes left over from the last time a pid was written. Members: lib/ChangeLog:1.83->1.84 lib/pid_output.c:1.6->1.7 --------------------- PatchSet 860 Date: 2004/11/25 17:14:34 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-25 Andrew J. Schorr * zebra.h: If not C99 and there's no va_copy macro and there is a __va_copy macro, define va_copy as __va_copy. Members: lib/ChangeLog:1.84->1.85 lib/zebra.h:1.25->1.26 --------------------- PatchSet 861 Date: 2004/11/25 19:21:07 Author: hasso Branch: HEAD Tag: (none) Log: Unbreak vtysh - don't add comments inside of DEFUN, it breaks extract.pl. Members: zebra/ChangeLog:1.49->1.50 zebra/irdp_interface.c:1.8->1.9 --------------------- PatchSet 862 Date: 2004/11/25 19:33:48 Author: hasso Branch: HEAD Tag: (none) Log: Make group to run daemon as configurable. Fixes #2 from Bugzilla #64. Members: bgpd/ChangeLog:1.31->1.32 bgpd/bgp_main.c:1.13->1.14 doc/ChangeLog:1.24->1.25 doc/bgpd.8:1.5->1.6 doc/isisd.8:1.1->1.2 doc/ospf6d.8:1.4->1.5 doc/ospfd.8:1.5->1.6 doc/ripd.8:1.4->1.5 doc/ripngd.8:1.4->1.5 doc/zebra.8:1.5->1.6 isisd/ChangeLog:1.28->1.29 isisd/isis_main.c:1.13->1.14 ospf6d/ChangeLog:1.29->1.30 ospf6d/ospf6_main.c:1.16->1.17 ospfd/ChangeLog:1.71->1.72 ospfd/ospf_main.c:1.18->1.19 ripd/ChangeLog:1.25->1.26 ripd/rip_main.c:1.12->1.13 ripngd/ChangeLog:1.14->1.15 ripngd/ripng_main.c:1.12->1.13 zebra/ChangeLog:1.50->1.51 zebra/main.c:1.17->1.18 --------------------- PatchSet 863 Date: 2004/11/25 20:54:46 Author: hasso Branch: HEAD Tag: (none) Log: Merge svn revisions 1208, 1222 and 1228 from Zebra cvs. Members: ospf6d/ChangeLog:1.30->1.31 ospf6d/OSPFV3-MIB.txt:1.1->1.2(DEAD) ospf6d/OSPFv3-MIB.txt:INITIAL->1.1 ospf6d/ospf6_lsa.c:1.12->1.13 ospf6d/ospf6_lsa.h:1.9->1.10 ospf6d/ospf6_lsdb.c:1.7->1.8 ospf6d/ospf6_lsdb.h:1.6->1.7 ospf6d/ospf6_snmp.c:1.3->1.4 ospf6d/ospf6_spf.c:1.8->1.9 ospf6d/ospf6_spf.h:1.5->1.6 --------------------- PatchSet 864 Date: 2004/11/26 12:55:51 Author: hasso Branch: HEAD Tag: (none) Log: Fix compile. Members: ospf6d/ChangeLog:1.31->1.32 ospf6d/ospf6_snmp.c:1.4->1.5 --------------------- PatchSet 865 Date: 2004/11/26 13:22:38 Author: ajs Branch: HEAD Tag: (none) Log: Remove unused va_list variable that was introduced by mistake in the last patch to stdarg handling. Members: lib/vty.c:1.29->1.30 --------------------- PatchSet 866 Date: 2004/11/26 14:14:30 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-26 Andrew J. Schorr * Makefile.am: Need to add zassert.h to pkginclude_HEADERS. Members: lib/ChangeLog:1.85->1.86 lib/Makefile.am:1.15->1.16 --------------------- PatchSet 867 Date: 2004/11/26 18:11:14 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-26 Andrew J. Schorr * log.c: (zlog_backtrace) New function to log a backtrace. (zlog_backtrace_safe) Log a backtrace in an async-signal-safe way. Unfortunately, this function does not support syslog logging yet. (zlog_signal) Move backtrace code into separate function zlog_backtrace_safe. (_zlog_assert_failed) Call zlog_backtrace before aborting. * log.h: Declare new functions zlog_backtrace and zlog_backtrace_safe. * memory.c: (zerror) Call zlog_backtrace before aborting. Members: lib/ChangeLog:1.86->1.87 lib/log.c:1.13->1.14 lib/log.h:1.8->1.9 lib/memory.c:1.8->1.9 --------------------- PatchSet 868 Date: 2004/11/26 19:36:42 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-26 Andrew J. Schorr * debug.[ch]: Remove unused files. * Makefile.am: Remove references to debug.c and debug.h * ospf_main.c: Remove #include "debug.h" (was not being used, and lib/debug.h has now been deleted). Members: lib/ChangeLog:1.87->1.88 lib/Makefile.am:1.16->1.17 lib/debug.c:1.3->1.4(DEAD) lib/debug.h:1.2->1.3(DEAD) ospfd/ChangeLog:1.72->1.73 ospfd/ospf_main.c:1.19->1.20 --------------------- PatchSet 869 Date: 2004/11/26 20:52:59 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-26 Andrew J. Schorr * log.c, log.h, memory.c: Change function name from zlog_backtrace_safe to the more self-explanatory zlog_backtrace_sigsafe. Members: lib/ChangeLog:1.88->1.89 lib/log.c:1.14->1.15 lib/log.h:1.9->1.10 lib/memory.c:1.9->1.10 --------------------- PatchSet 870 Date: 2004/11/28 21:16:20 Author: hasso Branch: HEAD Tag: (none) Log: DEFUN_DEPRECATED passes attribute to DEFUN as well. Members: lib/ChangeLog:1.89->1.90 lib/command.h:1.10->1.11 --------------------- PatchSet 871 Date: 2004/11/28 23:00:01 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-28 Andrew J. Schorr * log.h: Remove several unused fields from struct zlog. Add comments for other fields, and add one new field syslog_options that is used in the new syslog_sigsafe implementation. * log.c: (syslog_sigsafe) New function to send syslog messages in an async-signal safe way that can be used inside a signal handler. (syslog_connect) New function to connect to syslog daemon inside a signal handler. This function supports only systems where /dev/log is a unix datagram socket (e.g. not Solaris). (zlog_signal) Call syslog_sigsafe if syslog logging is enabled. (zlog_backtrace_sigsafe) Call syslog_sigsafe if syslog logging is enabled. (openzlog) Save syslog_options for use in syslog_sigsafe. (num_append) Fix bug: handle 0 properly. (hex_append) New function to print a u_long in hex format. Members: lib/ChangeLog:1.90->1.91 lib/log.c:1.15->1.16 lib/log.h:1.10->1.11 --------------------- PatchSet 872 Date: 2004/11/28 23:04:51 Author: ajs Branch: HEAD Tag: (none) Log: Fix comment for zlog_backtrace_sigsafe: it now supports syslog logging on systems where /dev/log is a unix datagram socket. Members: lib/log.h:1.11->1.12 --------------------- PatchSet 873 Date: 2004/11/30 22:38:43 Author: ajs Branch: HEAD Tag: (none) Log: 2004-11-30 Andrew J. Schorr * ospf_packet.c: (ospf_db_desc_proc) Fix spelling of packet in warning message and in comment. (ospf_db_desc) Warning message that a packet is being discarded should give the router id of the packet source. Fix spelling of packet in two warning messages. (ospf_ls_req) Warning message that a link state request is being discarded should give the router id of the neighbor that sent it. Members: ospfd/ChangeLog:1.73->1.74 ospfd/ospf_packet.c:1.53->1.54 --------------------- PatchSet 874 Date: 2004/12/03 16:36:46 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-03 Andrew J. Schorr * bgp_main.c: (sigint) Use zlog_notice for termination message. (main) Use zlog_notice for startup announcement. * isis_main.c: (sigint,sigterm) Use zlog_notice for termination message. (terminate) This function should be static, not global. (main) Use zlog_notice for startup announcement, and remove ifdef ZEBRA_VERSION. * version.h.in: Remove declaration for pid_output_lock, this function is now static, not global. * pid_output.c: (pid_output_lock) This function should be static, not global. And remove "old umask" error message, since it was really an unimportant debug message, not an error. (pid_output) Need to declare static function pid_output_lock. * ospf6_main.c: (sigint,sigterm) Use zlog_notice for termination message. (main) Remove commented-out call to pid_output_lock (which should never be called other than from inside pid_output). And use zlog_notice to print the startup message, which now includes the vty port. * ospf_main.c: (sigint) Use zlog_notice for termination message. (main) Issue a startup announcement using zlog_notice. * rip_main.c: (sigint) Use zlog_notice for termination message. (main) Add a startup announcement using zlog_notice. * ripng_main.c: (sighup) Remove spurious terminating message. (sigint) Use zlog_notice for termination message. (main) Issue a startup announcement using zlog_notice. * main.c: (sigint) Use zlog_notice for termination message. (main) Add a startup announcement using zlog_notice. Members: bgpd/ChangeLog:1.32->1.33 bgpd/bgp_main.c:1.14->1.15 isisd/ChangeLog:1.29->1.30 isisd/isis_main.c:1.14->1.15 lib/ChangeLog:1.91->1.92 lib/pid_output.c:1.7->1.8 lib/version.h.in:1.5->1.6 ospf6d/ChangeLog:1.32->1.33 ospf6d/ospf6_main.c:1.17->1.18 ospfd/ChangeLog:1.74->1.75 ospfd/ospf_main.c:1.20->1.21 ripd/ChangeLog:1.26->1.27 ripd/rip_main.c:1.13->1.14 ripngd/ChangeLog:1.15->1.16 ripngd/ripng_main.c:1.13->1.14 zebra/ChangeLog:1.51->1.52 zebra/main.c:1.18->1.19 --------------------- PatchSet 875 Date: 2004/12/03 16:43:24 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-03 Andrew J. Schorr * ospf_packet.c: (ospf_db_desc) Reduce priority on a debug message from LOG_NOTICE to LOG_DEBUG. Members: ospfd/ChangeLog:1.75->1.76 ospfd/ospf_packet.c:1.54->1.55 --------------------- PatchSet 876 Date: 2004/12/03 17:40:31 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-03 Andrew J. Schorr * command.h: Remove fields log_stdout and log_syslog from struct host, since they are just trying to duplicate information in the zlog_default structure. Note that this fixes a bug since those fields were not registering any logging that was established in the initial call to openzlog (this affects only the zebra and ospf6d daemons). It is probably a bug to turn on any logging by default in the call to openzlog. * command.c: (config_write_host) Get logging info from zlog_default instead of now-removed fields host.log_stdout and host.log_syslog. (config_log_stdout,no_config_log_stdout) Do not set now-removed field host.log_stdout, since this info is recorded in zlog_default. (config_log_file) Use XSTRDUP (instead of strdup) to set host.logfile. (config_log_syslog,config_log_syslog_facility,no_config_log_syslog) Do not set now-removed field host.log_syslog, since this info is recorded in zlog_default. Members: lib/ChangeLog:1.92->1.93 lib/command.c:1.26->1.27 lib/command.h:1.11->1.12 --------------------- PatchSet 877 Date: 2004/12/03 18:01:04 Author: ajs Branch: HEAD Tag: (none) Log: Need RCS Id keyword. Members: lib/zassert.h:1.1->1.2 --------------------- PatchSet 878 Date: 2004/12/03 19:03:33 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-03 Andrew J. Schorr * HACKING: Indicate that header files should be consulted for documentation, particularly logging levels in lib/log.h. * log.h: Document appropriate use of syslog logging priorities inside quagga. Members: ChangeLog:1.76->1.77 HACKING:1.12->1.13 lib/ChangeLog:1.93->1.94 lib/log.h:1.12->1.13 --------------------- PatchSet 879 Date: 2004/12/07 15:39:31 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-07 Andrew J. Schorr * bgp_main.c: (main) The 2nd argument to openzlog has been removed. * isis_main.c: (main) The 2nd argument to openzlog has been removed. * ospf6_main.c: (main) The 2nd argument to openzlog has been removed. Note that stdout logging will no longer be enabled by default when not running as a daemon. * ospf_main.c: (main) The 2nd argument to openzlog has been removed. * rip_main.c: (main) The 2nd argument to openzlog has been removed. * ripng_main.c: (main) The 2nd argument to openzlog has been removed. * main.c: (main) The 2nd argument to openzlog has been removed. So stdout logging will no longer be enabled by default. * irdp_main.c: (irdp_finish) Reduce severity of shutdown message from LOG_WARNING to LOG_INFO. * vtysh.c: Make several functions static instead of global. Added several commands to support destination-specific logging levels. (vtysh_completion) This function is unused, so comment it out. * basic.texi: Document new logging features. Separate basic config commands from basic VTY commands. * log.h: Replace struct zlog flags and maskpri fields with maxlvl array to support individual logging levels for each destination. Remove the 2nd argument to openzlog since the default logging config should be standardized inside the library. Replaced the zlog_set_flag and zlog_reset_flag functions with zlog_set_level. And zlog_set_file now requires an additional log_level argument. Declare zlog_proto_names for use inside command.c in the "show logging" command. Added defines useful for command construction. * log.c: (vzlog) Decide where to send the message based on the individual logging levels configured for each destination. Remove support for ZLOG_STDERR since it was never actually used. Support record-priority for terminal monitors. (zlog_signal,zlog_backtrace_sigsafe) Support destination-specific logging levels. Remove stderr support (was never used). Added support for terminal monitor logging. (_zlog_assert_failed) Increase message severity to LOG_EMERG. (openzlog) Remove 2nd argument since default config should be standardized in library. By default, terminal monitoring is set to debug, and all other logging is disabled. (zlog_set_flag,zlog_reset_flag) Removed. (zlog_set_level) New function to replace zlog_set_flag and zlog_reset_flag. Supports destination-specific logging levels. (zlog_set_file,zlog_reset_file) Support file-specific logging level. (zlog_rotate) Log an error message if fopen fails, and support new file-specific logging level. * command.h: Change DEFUN_CMD_FUNC_DECL and DEFUN_CMD_FUNC_TEXT so that command functions will be static instead of global. Remove declarations for config_exit and config_help. Define new macros DEFUNSH_ATTR, DEFUNSH_HIDDEN, and DEFUNSH_DEPRECATED so we can have deprecated commands in vtysh. Similarly, for completeness, define macros ALIAS_SH, ALIAS_SH_HIDDEN, and ALIAS_SH_DEPRECATED. Also, fix bug in ALIAS_ATTR macro (didn't matter because it was never used). * command.c: Make many functions static instead of global. (facility_name,facility_match,level_match) New functions to support enhanced destination-specific logging levels. (config_write_host) Support new destination-specific logging levels. (config_logmsg) Added new "logmsg" command to help test logging system. (show_logging) Added "show logging" command to show the current configuration of the logging system. (config_log_stdout_level) Support explicit stdout logging level. (no_config_log_stdout) Now takes optional LEVEL arg. (config_log_monitor,config_log_monitor_level,no_config_log_monitor) New commands creating new "log monitor" commands to set terminal monitoring log level. (config_log_file_level) Support explicit file logging level. (config_log_syslog_level) Support explicit syslog logging level. (config_log_facility,no_config_log_facility) Implement new "log facility" command. (cmd_init) Add hooks for new commands: "show logging", "logmsg", "log stdout ", "log monitor", "log monitor ", "no log monitor", "log file ", "no log file ", "log syslog ", "log facility", and "no log facility". * vty.h: Added a "level" argument to vty_log so it can support "log record-priority". Declare new function vty_log_fixed for use in signal handlers. * vty.c: (vty_log,vty_log_out) Added a "level" argument to support "log record-priority" for vty terminal monitors. (vty_down_level) Use config_exit_cmd.func instead of calling config_exit directly (since command functions will now be static instead of global). (vty_log_fixed) New function to send terminal monitor messages from inside a signal handler. Members: bgpd/ChangeLog:1.33->1.34 bgpd/bgp_main.c:1.15->1.16 doc/ChangeLog:1.25->1.26 doc/basic.texi:1.4->1.5 doc/quagga.info:1.1->1.2 isisd/ChangeLog:1.30->1.31 isisd/isis_main.c:1.15->1.16 lib/ChangeLog:1.94->1.95 lib/command.c:1.27->1.28 lib/command.h:1.12->1.13 lib/log.c:1.16->1.17 lib/log.h:1.13->1.14 lib/vty.c:1.30->1.31 lib/vty.h:1.7->1.8 ospf6d/ChangeLog:1.33->1.34 ospf6d/ospf6_main.c:1.18->1.19 ospfd/ChangeLog:1.76->1.77 ospfd/ospf_main.c:1.21->1.22 ripd/ChangeLog:1.27->1.28 ripd/rip_main.c:1.14->1.15 ripngd/ChangeLog:1.16->1.17 ripngd/ripng_main.c:1.14->1.15 vtysh/ChangeLog:1.27->1.28 vtysh/vtysh.c:1.37->1.38 zebra/ChangeLog:1.52->1.53 zebra/irdp_main.c:1.8->1.9 zebra/main.c:1.19->1.20 --------------------- PatchSet 880 Date: 2004/12/07 17:15:55 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-07 Andrew J. Schorr * command.c: (config_write_host) Note that "log trap" is deprecated when writing out the config. Members: lib/ChangeLog:1.95->1.96 lib/command.c:1.28->1.29 --------------------- PatchSet 881 Date: 2004/12/07 18:53:52 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-07 Andrew J. Schorr * {smux.c,zclient.c}: Change level of debug messages to LOG_DEBUG. Members: lib/ChangeLog:1.96->1.97 lib/smux.c:1.13->1.14 lib/zclient.c:1.14->1.15 --------------------- PatchSet 882 Date: 2004/12/07 21:12:56 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-07 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: zebra/ChangeLog:1.53->1.54 zebra/interface.c:1.19->1.20 zebra/irdp_interface.c:1.9->1.10 zebra/irdp_main.c:1.9->1.10 zebra/irdp_packet.c:1.7->1.8 zebra/kernel_socket.c:1.18->1.19 zebra/redistribute.c:1.6->1.7 zebra/rt_ioctl.c:1.2->1.3 zebra/rt_netlink.c:1.25->1.26 zebra/rt_socket.c:1.5->1.6 zebra/rtadv.c:1.16->1.17 zebra/zebra_rib.c:1.17->1.18 zebra/zserv.c:1.21->1.22 --------------------- PatchSet 883 Date: 2004/12/08 17:14:45 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * prefix.c: (prefix_copy) Error message before abort should have severity LOG_ERR, not LOG_INFO. * memory.c: (mtype_log) Log level should be LOG_DEBUG, not LOG_INFO. Members: lib/ChangeLog:1.97->1.98 lib/memory.c:1.10->1.11 lib/prefix.c:1.4->1.5 --------------------- PatchSet 884 Date: 2004/12/08 17:28:56 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ospfd/ospf_abr.c:1.12->1.13 ospfd/ospf_api.c:1.2->1.3 ospfd/ospf_apiserver.c:1.14->1.15 ospfd/ospf_asbr.c:1.1->1.2 ospfd/ospf_ase.c:1.8->1.9 --------------------- PatchSet 885 Date: 2004/12/08 17:45:02 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ospfd/ospf_dump.c:1.13->1.14 ospfd/ospf_flood.c:1.12->1.13 ospfd/ospf_ia.c:1.5->1.6 ospfd/ospf_interface.c:1.27->1.28 ospfd/ospf_ism.c:1.5->1.6 --------------------- PatchSet 886 Date: 2004/12/08 18:12:06 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ospfd/ospf_lsa.c:1.30->1.31 ospfd/ospf_neighbor.c:1.5->1.6 --------------------- PatchSet 887 Date: 2004/12/08 18:43:03 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ospfd/ospf_nsm.c:1.7->1.8 ospfd/ospf_opaque.c:1.11->1.12 ospfd/ospf_packet.c:1.55->1.56 ospfd/ospf_route.c:1.10->1.11 ospfd/ospf_spf.c:1.14->1.15 ospfd/ospf_te.c:1.8->1.9 ospfd/ospf_vty.c:1.24->1.25 --------------------- PatchSet 888 Date: 2004/12/08 19:11:22 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ospfd/ChangeLog:1.77->1.78 ospfd/ospf_zebra.c:1.24->1.25 ospfd/ospfd.c:1.27->1.28 --------------------- PatchSet 889 Date: 2004/12/08 19:29:10 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ripd/ChangeLog:1.28->1.29 ripd/rip_interface.c:1.23->1.24 ripd/ripd.c:1.34->1.35 --------------------- PatchSet 890 Date: 2004/12/08 19:46:50 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ripngd/ripng_interface.c:1.13->1.14 --------------------- PatchSet 891 Date: 2004/12/08 19:51:57 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: ripngd/ChangeLog:1.17->1.18 ripngd/ripngd.c:1.14->1.15 --------------------- PatchSet 892 Date: 2004/12/08 19:59:11 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: bgpd/bgp_attr.c:1.6->1.7 bgpd/bgp_debug.c:1.6->1.7 --------------------- PatchSet 893 Date: 2004/12/08 20:08:54 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: bgpd/bgp_fsm.c:1.8->1.9 --------------------- PatchSet 894 Date: 2004/12/08 20:41:23 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: bgpd/bgp_network.c:1.9->1.10 bgpd/bgp_nexthop.c:1.9->1.10 --------------------- PatchSet 895 Date: 2004/12/08 20:47:40 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: bgpd/bgp_open.c:1.3->1.4 --------------------- PatchSet 896 Date: 2004/12/08 21:03:23 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: bgpd/bgp_packet.c:1.11->1.12 --------------------- PatchSet 897 Date: 2004/12/08 21:11:05 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.c: Change level of debug messages to LOG_DEBUG. Members: bgpd/ChangeLog:1.34->1.35 bgpd/bgp_route.c:1.19->1.20 --------------------- PatchSet 898 Date: 2004/12/08 22:01:48 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-08 Andrew J. Schorr * *.h: Change level of debug messages to LOG_DEBUG. Members: ospf6d/ospf6_lsa.h:1.10->1.11 ospf6d/ospf6_lsdb.h:1.7->1.8 --------------------- PatchSet 899 Date: 2004/12/09 14:46:46 Author: gdt Branch: HEAD Tag: (none) Log: Add comments with warnings obtained on NetBSD/i386. Both are due to size_t being used for streams. Perhaps cast to unsigned long before printf? Surely that's big enough even if size_t could be larger in theory. (no changelog, since only comment changes) Members: bgpd/bgp_attr.c:1.7->1.8 bgpd/bgpd.c:1.11->1.12 --------------------- PatchSet 900 Date: 2004/12/09 14:47:09 Author: gdt Branch: HEAD Tag: (none) Log: add comment about warning of comparison between signed and unsigned Members: ospf6d/ospf6_intra.c:1.9->1.10 --------------------- PatchSet 901 Date: 2004/12/09 14:48:12 Author: gdt Branch: HEAD Tag: (none) Log: Add const to char * to quiet warnings. Note two warnings in comments. The serious one is that struct interface->ifindex probably needs to be signed, ssince we store and compare to -1. Members: zebra/ChangeLog:1.54->1.55 zebra/kernel_socket.c:1.19->1.20 --------------------- PatchSet 902 Date: 2004/12/09 14:49:51 Author: gdt Branch: HEAD Tag: (none) Log: add comments about warnings Members: ospfd/ospf_network.c:1.7->1.8 ospfd/ospf_opaque.c:1.12->1.13 --------------------- PatchSet 903 Date: 2004/12/09 14:51:03 Author: gdt Branch: HEAD Tag: (none) Log: ospf_apiserver_term: Remove unused variable. Add comment: this is seriously broken, and needs fixing. It appears likely to segfault if ever called. Comments please - should I make the fix I suggest in the comment? -gdt Members: ospfd/ChangeLog:1.78->1.79 ospfd/ospf_apiserver.c:1.15->1.16 --------------------- PatchSet 904 Date: 2004/12/09 14:53:32 Author: gdt Branch: HEAD Tag: (none) Log: add XXX comment about hex_append being unused. (only used if HAVE_GLIBC_BACKTRACE, so perhaps ifdef it?) Members: lib/log.c:1.17->1.18 --------------------- PatchSet 905 Date: 2004/12/09 15:15:03 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-09 Andrew J. Schorr * vtysh.c: (vtysh_connect) No reason to call geteuid and getegid, the results were never used. Members: vtysh/ChangeLog:1.28->1.29 vtysh/vtysh.c:1.38->1.39 --------------------- PatchSet 906 Date: 2004/12/09 16:30:04 Author: gdt Branch: HEAD Tag: (none) Log: * ospf_apiserver.c (ospf_apiserver_term): Obtain struct ospf_apiserver * from listnode. Remove unused variables. Follows suggestion from Jay Fenlason. Members: ospfd/ChangeLog:1.79->1.80 ospfd/ospf_apiserver.c:1.16->1.17 --------------------- PatchSet 907 Date: 2004/12/09 17:26:31 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-09 Andrew J. Schorr * log.c: (hex_append) No need to include this function if HAVE_GLIBC_BACKTRACE is not defined. Members: lib/ChangeLog:1.98->1.99 lib/log.c:1.18->1.19 --------------------- PatchSet 908 Date: 2004/12/10 22:43:17 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-10 Andrew J. Schorr * log.c: (zlog_signal,_zlog_assert_failed) Change logging level back to LOG_ERR instead of LOG_EMERG. Members: lib/ChangeLog:1.99->1.100 lib/log.c:1.19->1.20 --------------------- PatchSet 909 Date: 2004/12/11 18:00:06 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-11 Andrew J. Schorr * ospf_packet.c: (ospf_db_desc) Should be static, not global. (ospf_hello,ospf_db_desc,ospf_ls_upd,ospf_ls_ack) Improve warning messages to include identifying information (e.g. router id). * ospf_nsm.c: (nsm_change_state) Improve info message to include router id and state names. Members: ospfd/ChangeLog:1.80->1.81 ospfd/ospf_nsm.c:1.8->1.9 ospfd/ospf_packet.c:1.56->1.57 --------------------- PatchSet 910 Date: 2004/12/15 14:55:51 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-15 Andrew J. Schorr * ripd.c: (rip_read) Improve 2 error messages to show the source of the packet when the lookup fails. Members: ripd/ChangeLog:1.29->1.30 ripd/ripd.c:1.35->1.36 --------------------- PatchSet 911 Date: 2004/12/15 15:07:19 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-15 Andrew J. Schorr * ospf_interface.h: Declare new function ospf_default_iftype. * ospf_interface.c: (ospf_default_iftype) New function to centralize this logic in one place. * ospf_zebra.c: (ospf_interface_add) Use new function ospf_default_iftype. * ospf_vty.c: (no_ip_ospf_network,config_write_interface) Fix logic by using new function ospf_default_iftype. Members: ospfd/ChangeLog:1.81->1.82 ospfd/ospf_interface.c:1.28->1.29 ospfd/ospf_interface.h:1.5->1.6 ospfd/ospf_vty.c:1.25->1.26 ospfd/ospf_zebra.c:1.25->1.26 --------------------- PatchSet 912 Date: 2004/12/15 17:41:14 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-15 Andrew J. Schorr * sigevent.c: (trap_default_signals) Ignore SIGPIPE instead of exiting. Members: lib/ChangeLog:1.100->1.101 lib/sigevent.c:1.4->1.5 --------------------- PatchSet 913 Date: 2004/12/16 16:18:13 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-16 Andrew J. Schorr * ripng_nexthop.c: Replace NEXTHOP_OUT macro with NEXTHOP_OUT_PTR, since it's not really OK to take the address of a ternary expression. (_ripng_rte_cmp,ripng_rte_send) Use new NEXTHOP_OUT_PTR macro instead of NEXTHOP_OUT. Members: ripngd/ChangeLog:1.18->1.19 ripngd/ripng_nexthop.c:1.3->1.4 --------------------- PatchSet 914 Date: 2004/12/17 20:50:00 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-17 Andrew J. Schorr * pid_output.c: (pid_output_lock) Eliminate static function, and just use the #ifdef to decide which version of the function to include. This eliminates a compilation problem with gcc4. And fix the non-fcntl version so that it actually compiles. Exit with status 1 instead of -1 on error. Members: lib/ChangeLog:1.101->1.102 lib/pid_output.c:1.8->1.9 --------------------- PatchSet 915 Date: 2004/12/17 23:16:33 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-17 Andrew J. Schorr * command.c: (do_echo) Added new "echo" command, useful for watchdog pinging to make sure the daemon is responsive. Members: lib/ChangeLog:1.102->1.103 lib/command.c:1.29->1.30 --------------------- PatchSet 916 Date: 2004/12/18 15:59:25 Author: hasso Branch: HEAD Tag: (none) Log: Add isisd.8 into list of man pages. Members: doc/ChangeLog:1.26->1.27 doc/Makefile.am:1.8->1.9 --------------------- PatchSet 917 Date: 2004/12/18 16:03:28 Author: hasso Branch: HEAD Tag: (none) Log: Fix "show ipv6 route " command. Members: zebra/ChangeLog:1.55->1.56 zebra/zebra_vty.c:1.9->1.10 --------------------- PatchSet 918 Date: 2004/12/21 22:34:58 Author: paul Branch: HEAD Tag: (none) Log: 2004-12-21 Paul Jakma * if.h: Add more 'non-generic' IFF_ flags. * if.c: IFF_NOXMIT/IFF_VIRTUAL interfaces are 'loopback like' Members: lib/ChangeLog:1.103->1.104 lib/if.c:1.23->1.24 lib/if.h:1.15->1.16 --------------------- PatchSet 919 Date: 2004/12/22 00:15:34 Author: paul Branch: HEAD Tag: (none) Log: 2004-12-21 Paul Jakma * stream.c: Dont allocate streams with 0 sized data buffers Members: lib/ChangeLog:1.104->1.105 lib/stream.c:1.1->1.2 --------------------- PatchSet 920 Date: 2004/12/22 02:56:38 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-21 Andrew J. Schorr * {ChangeLog,watchquagga.c,Makefile.am}: Created. Members: watchquagga/ChangeLog:INITIAL->1.1 watchquagga/Makefile.am:INITIAL->1.1 watchquagga/watchquagga.c:INITIAL->1.1 --------------------- PatchSet 921 Date: 2004/12/22 03:02:46 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-21 Andrew J. Schorr * redhat/watchquagga.init: New file, init script for watchquagga. Members: ChangeLog:1.77->1.78 redhat/watchquagga.init:INITIAL->1.1 --------------------- PatchSet 922 Date: 2004/12/22 03:05:37 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-21 Andrew J. Schorr * redhat/Makefile.am: Added watchquagga.init to EXTRA_DIST. Members: ChangeLog:1.78->1.79 redhat/Makefile.am:1.1->1.2 --------------------- PatchSet 923 Date: 2004/12/22 03:08:25 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-21 Andrew J. Schorr * watchquagga: New watchquagga daemon. Members: ChangeLog:1.79->1.80 --------------------- PatchSet 924 Date: 2004/12/22 03:16:59 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-21 Andrew J. Schorr * NEWS: Note addition of watchquagga. * HACKING: Note that watchquagga is in testing phase. Members: ChangeLog:1.80->1.81 HACKING:1.13->1.14 NEWS:1.13->1.14 --------------------- PatchSet 925 Date: 2004/12/22 03:41:51 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-21 Andrew J. Schorr * .cvsignore: Added. Members: watchquagga/.cvsignore:INITIAL->1.1 watchquagga/ChangeLog:1.1->1.2 --------------------- PatchSet 926 Date: 2004/12/22 09:27:42 Author: hasso Branch: HEAD Tag: (none) Log: No delimiter between "ip forwarding" and "ipv6 forwarding". Members: vtysh/ChangeLog:1.29->1.30 vtysh/vtysh_config.c:1.9->1.10 --------------------- PatchSet 927 Date: 2004/12/22 09:43:20 Author: hasso Branch: HEAD Tag: (none) Log: Show debug configuration in vtysh. Members: ospfd/ChangeLog:1.82->1.83 ospfd/ospf_dump.c:1.14->1.15 --------------------- PatchSet 928 Date: 2004/12/22 11:53:09 Author: hasso Branch: HEAD Tag: (none) Log: More cosmetical vtysh fixes. Members: vtysh/ChangeLog:1.30->1.31 vtysh/vtysh_config.c:1.10->1.11 --------------------- PatchSet 929 Date: 2004/12/22 13:09:59 Author: hasso Branch: HEAD Tag: (none) Log: Fix "show ip ospf" output. If router is configured as "translate-never", we say so - we can never be translator. Members: ospfd/ChangeLog:1.83->1.84 ospfd/ospf_vty.c:1.26->1.27 --------------------- PatchSet 930 Date: 2004/12/22 14:03:52 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * {configure.ac,Makefile.am}: Build watchquagga by default. Members: ChangeLog:1.81->1.82 Makefile.am:1.18->1.19 configure.ac:1.77->1.78 --------------------- PatchSet 931 Date: 2004/12/22 14:08:13 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * watchquagga.c: Get PATH_WATCHQUAGGA_PID from config.h. Members: watchquagga/ChangeLog:1.2->1.3 watchquagga/watchquagga.c:1.1->1.2 --------------------- PatchSet 932 Date: 2004/12/22 15:35:12 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * configure.ac: Add a define for DAEMON_VTY_DIR in config.h. Members: ChangeLog:1.82->1.83 configure.ac:1.78->1.79 --------------------- PatchSet 933 Date: 2004/12/22 15:37:44 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * watchquagga.c: Use new config.h define for DAEMON_VTY_DIR. Members: watchquagga/ChangeLog:1.3->1.4 watchquagga/watchquagga.c:1.2->1.3 --------------------- PatchSet 934 Date: 2004/12/22 16:16:02 Author: hasso Branch: HEAD Tag: (none) Log: Show sums of checksums in "show ip ospf" output. Okayed by Paul and James R. Leu (author of original idea). Members: ospfd/ChangeLog:1.84->1.85 ospfd/ospf_lsa.c:1.31->1.32 ospfd/ospf_lsdb.c:1.1->1.2 ospfd/ospf_lsdb.h:1.1->1.2 ospfd/ospf_vty.c:1.27->1.28 --------------------- PatchSet 935 Date: 2004/12/22 16:17:16 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * watchquagga.c: Add -b option to circumvent difficulties passing embedded spaces in command-line arguments. This is an ugly hack, we should probably use a config file instead. Members: watchquagga/ChangeLog:1.4->1.5 watchquagga/watchquagga.c:1.3->1.4 --------------------- PatchSet 936 Date: 2004/12/22 16:18:53 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * redhat/quagga.sysconfig: Define some variables to support watchquagga. Members: ChangeLog:1.83->1.84 redhat/quagga.sysconfig:1.3->1.4 --------------------- PatchSet 937 Date: 2004/12/22 16:32:16 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * connected.c: (connected_add_ipv4) Limit warning about /32 addresses with no peer specified to PtP interfaces only. Members: zebra/ChangeLog:1.56->1.57 zebra/connected.c:1.11->1.12 --------------------- PatchSet 938 Date: 2004/12/22 17:00:46 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * watchquagga.c: Try for gcc 2.95 compatibility (avoid %z and a tricky initialization). Members: watchquagga/ChangeLog:1.5->1.6 watchquagga/watchquagga.c:1.4->1.5 --------------------- PatchSet 939 Date: 2004/12/22 17:52:29 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * redhat/quagga.spec.in: Add watchquagga, and fix some other logic to make sure that all daemons are restarted on upgrades and stopped on package removal. Members: ChangeLog:1.84->1.85 redhat/quagga.spec.in:1.21->1.22 --------------------- PatchSet 940 Date: 2004/12/23 00:00:58 Author: ajs Branch: HEAD Tag: (none) Log: 2004-12-22 Andrew J. Schorr * redhat/quagga.spec.in: daemonv6_list should contain only IPv6 daemons. Members: ChangeLog:1.85->1.86 redhat/quagga.spec.in:1.22->1.23 --------------------- PatchSet 941 Date: 2004/12/23 19:35:56 Author: paul Branch: HEAD Tag: (none) Log: 2004-12-23 Paul Jakma * watchquagga.c: Add missing getopt.h include Members: watchquagga/ChangeLog:1.6->1.7 watchquagga/watchquagga.c:1.5->1.6 --------------------- PatchSet 942 Date: 2004/12/23 20:09:44 Author: paul Branch: HEAD Tag: quagga_0_97_4_release Log: 2004-12-23 Paul Jakma configure.ac: Bump version to 0.97.4 doc/quagga.info: ditto (autogenerated file) Members: ChangeLog:1.86->1.87 configure.ac:1.79->1.80 doc/ChangeLog:1.27->1.28 doc/quagga.info:1.2->1.3