)]}'
{
  "log": [
    {
      "commit": "41367172d812354c05b11818346f0d49c2245aef",
      "tree": "eb8f83ec0e93cb5a1d8470afd5c79ce55bc853da",
      "parents": [
        "6d58272b4cf96f0daa846210dd2104877900f921"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon Aug 06 15:24:51 2007 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon Aug 06 15:24:51 2007 +0000"
      },
      "message": "[bgpd] Add support for AS_PATHLIMIT / draft-ietf-idr-as-pathlimit\n\n2007-07-31 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* (general) Support for draft-ietf-idr-as-pathlimit-03.\n\t* bgp_attr.h: (struct attr) Add pathlimit struct\n          bgp_attr.c: (attr_str) Add BGP_ATTR_AS_PATHLIMIT string.\n          (attrhash_key_make) tally pathlimit too\n          (attrhash_cmp) cmp pathlimit attr\n          (bgp_attr_aspathlimit) New, parse AS_PATHLIMIT attr.\n          (bgp_attr_parse) ditto\n          (bgp_packet_attribute) Write out AS_PATHLIMIT when set\n          (bgp_dump_routes_attr) ditto\n         * bgp_route.h: (struct bgp_static) Add TTL field\n         * bgp_route.c: (bgp_announce_check) Drop paths that are over\n           their hop-count TTL before sending via EBGP.\n           Mangle ASN in pathlimit for confeds/private as best we can.\n           (bgp_static_update_{rsclient,main}) Add any configure pathlimit\n           information.\n           (bgp_pathlimit_update_parents) New, update atomic-aggr setting for\n           parents of an aspathlimit\u0027ed static.\n           (bgp_static_set) Add TTL argument, for all the \u0027bgp network\u0027\n           commands.\n           Call previous for TTL changed statics.\n           (bgp_static_unset) Call pathlimit_update_parents.\n           (various bgp network commands) Add \u0027pathlimit \u003c0-255\u003e\u0027 qualifier\n           to all the various forms, bar route-map - which can set ttl\n           itself.\n         * bgp_routemap.c: (general) Add support for \u0027set pathlimit ttl\u0027 and\n           \u0027match pathlimit as\u0027.\n         * doc/bgpd.texi: Document \u0027network ... pathlimit \u003cttl\u003e\u0027\n"
    },
    {
      "commit": "7514fb7739f74311830e9ddd1381d0d228224f61",
      "tree": "4d4b9a4fdfcea4cb6fa496085327f1aae9a9a380",
      "parents": [
        "5fa05099567bbe42aae87a9bef8fd630b3666a4d"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Wed May 02 16:05:35 2007 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Wed May 02 16:05:35 2007 +0000"
      },
      "message": "[zebra] Routemap support on received routes, with \u0027set src\u0027 command (linux)\n\n2007-05-01 David L Stevens \u003cdlstevens@us.ibm.com\u003e\n\n\t* (general) These changes collectively add route-map and\n\t  prefix-list support to zebra and fix a bug in \"show\n\t  route-map\" (with no argument).\n\t* doc/main.texi: added route-map, prefix-list, ip protocol\n\t  and set src documentation\n\t* lib/command.h: added PROTOCOL_NODE type\n\t* lib/log.c: (proto_name2num) new function, protocol name to\n\t  number translation.\n\t* lib/routemap.c: (vty_show_route_map) fixed \"show route-map\"\n\t  without route-map name\n\t* lib/routemap.h: added RMAP_ZEBRA type\n\t* lib/zebra.h: added proto_name2num() prototype\n\t* vtysh/extract.pl.in: added VTYSH_ZEBRA flag for route-map and\n\t  plist\n\t* vtysh/Makefile.am: added zebra_routemap.c\n\t* vtysh/vtysh.h: added VTYSH_ZEBRA flag to VTYSH_RMAP\n\t* zebra/connected.c: (connected_up_ipv4) added src preference argument\n\t  to rib_add_ipv4()\n\t* zebra/kernel_socket.c: (rtm_read) ditto\n\t* zebra/main.c: added prefix list initialization\n\t* zebra/Makefile.am: added zebra_routemap.c source file\n\t* zebra/rib.h: added generic address union \"g_addr\" and use in\n\t  existing places that had an explicit union.\n\t  Added \"src\" to struct nexthop.\n\t  Added preferred src arg to nexthop_ipv4_add and rib_add_ipv4.\n\t* zebra/rt_netlink.c: (netlink_routing_table) set preferred source on\n\t  netlink messages.\n\t  (netlink_route_change) ditto\n\t  (netlink_route_multipath) ditto.\n\t* zebra/rtread_getmsg.c: (handle_route_entry) added (NULL) src to\n\t  rib_add_ipv4() call.\n\t* zebra/rtread_proc.c: (proc_route_read) ditto\n\t* zebra/zebra_rib.c: (nexthop_ipv4_add) add src argument.\n\t  (nexthop_ipv4_ifindex_add) ditto\n\t  (rib_add_ipv4) ditto\n\t  (nexthop_active_check) Add route-map processing.\n\t* zebra/zebra_routemap.c: new file for zebra route-map commands.\n\t* zebra/zebra_vty.c: (ip_protocol_cmd) Apply route-map to protocol\n\t  (vty_show_ip_route_detail) added \"src\" printing\n\t  (vty_show_ip_route) ditto\n\t  (show_ip_protocol_cmd) new command, list routemaps.\n\t  (config_write_protocol) write out routemap protocl config.\n\t  (zebra_vty_init) Install the new routemap protocol commands.\n\t* zebra/zserv.c: (zread_ipv4_add) added (NULL) src arg\n\t  (zebra_init) init zebra route-maps.\n\t* zebra/zserv.h: add zebra_route_map_init\n"
    },
    {
      "commit": "f0ec832a78549a85cf4e47d884036c1178f749d3",
      "tree": "6c3384cccf81993d69208f13145c33741abd7afc",
      "parents": [
        "a857eb6be5b7f639e76fe3ef7711a3700abe20bc"
      ],
      "author": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Mon Apr 30 16:52:05 2007 +0000"
      },
      "committer": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Mon Apr 30 16:52:05 2007 +0000"
      },
      "message": "[ospfd] network command now behaves more logically when a peer prefix is defined\n\n2007-04-30 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* ospfd/ospfd.c: (ospf_network_match_iface) Comment out\n\t  COMPATIBILITY_MODE.  Going forward, the ospf \"network\" command\n\t  will use a simple test: does the network command prefix\n\t  contain the connected (destination) prefix of the interface?\n\t* doc/ospfd.texi: Add a paragraph to the description of the OSPFv2\n\t  network command to explain how we handle interfaces with\n\t  peer addresses.\n"
    },
    {
      "commit": "d3d7e237fdc661d1d1d00a8b43657d1d719410e6",
      "tree": "5121712aa4d6170794678c0c7200cc05adc7f529",
      "parents": [
        "c749b7227b331daaac23eb271698e4f60301619f"
      ],
      "author": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Sun Apr 29 15:24:15 2007 +0000"
      },
      "committer": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Sun Apr 29 15:24:15 2007 +0000"
      },
      "message": "[logging] Add new \"log timestamp precision\" command for subsecond timestamps\n\n2007-04-29 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* basic.texi: Document the new \u0027log timestamp precision\u0027 command.\n"
    },
    {
      "commit": "54afb658829d4bfe5de52685f77af8c8273e78c0",
      "tree": "ad3c8ea9193d85267afe3a84e2fa03a71309870d",
      "parents": [
        "a4c648281dfdc45687580ea2d20884b5d7dbdc8d"
      ],
      "author": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Wed Mar 21 21:03:44 2007 +0000"
      },
      "committer": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Wed Mar 21 21:03:44 2007 +0000"
      },
      "message": "[doc] Makefile VPATH patch\n\n2007-03-21 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* Makefile.am: Patch rule for draft-zebra-00.txt to work\n\t  in VPATH build environments.\n"
    },
    {
      "commit": "c3eab60e7753ed34d30c978f9d4034562bf1df55",
      "tree": "7a0cb71f1853a742b1d4eb8855a3095c7e5d1ab8",
      "parents": [
        "f912cb4fb0cbf92bf97ea6830c74306551963b2b"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Fri Jul 28 04:42:39 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Fri Jul 28 04:42:39 2006 +0000"
      },
      "message": "[doc] Expand/cross-ref MD5 commands, tweak anchors to avoid added spacing\n\n2006-07-28 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* main.texi: link-detect works on Solaris too.\n\t* ospfd.texi: Twiddle around with anchors a bit more.\n\t  Clarify how setting MD5 auth by area and by interface interact,\n\t  and add cross-references, as well as to the required\n\t  command for setting key material.\n"
    },
    {
      "commit": "f912cb4fb0cbf92bf97ea6830c74306551963b2b",
      "tree": "9c62ff16d3f40aff93f98eecb87ecaefcfc30274",
      "parents": [
        "fbcba805143038af0ae0318b7ec4905708fb0949"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Thu Jul 27 23:30:16 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Thu Jul 27 23:30:16 2006 +0000"
      },
      "message": "[doc] minor tweaks, refine ospf redist,passive-inter, and abr-type help\n\n2006-07-27 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* quagga.texi: Remove unused index definitions\n\t  Add an Index node - for the concept index.\n\t* routeserver.texi: Set exampleindex to 0, so the example configs\n\t  with long IPv6 addresses stand better chance of fitting.\n\t* overview.texi: \u0027Supported RFC\u0027 -\u003e \u0027Supported RFCs\u0027\n\t  Remove paragraph indentation - texinfo does that.\n\t  Revise the supported OS list slightly.\n\t  Remove the IPv6 stack list, seems very dated and irrelevant.\n\t  Revise the \u0027How to get Quagga\u0027 section.\n\t* ospfd.texi: minor tweaks: add some anchors, fix some minor\n\t  format issues.\n\t  Revise the help for \u0027abr-type\u0027.\n\t  Note that text authentication is unwise, recc\u0027d MD5.\n\t  Add some extra text for redistribute and passive-interface,\n\t  about how latter can substitute for redist connected.\n"
    },
    {
      "commit": "f366ad31ae6bf7e2fb7271cf8eab6dee4af3baf9",
      "tree": "452f3071f7e1dc71d056bd476481bb008f6f435e",
      "parents": [
        "171eee31edbddbd8906447dc8725e0513227d013"
      ],
      "author": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Thu Jul 27 18:01:41 2006 +0000"
      },
      "committer": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Thu Jul 27 18:01:41 2006 +0000"
      },
      "message": "[vtysh] Never skip authentication, and add support for multiple -c commands\n\n2006-07-27 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* vtysh.1: Document new options -d and -E, and note that now multiple\n\t  -c options may be supplied, with embedded linefeed now supported.\n\t  In BUGS section, remove warning about vtysh causing a daemon\n\t  to freeze, since this has been fixed.\n\t* vtysh_main.c: (usage) Add new -d and -E options.  And note that\n\t  -c can be used multiple times, possibly with embedded linefeeds.\n\t  (longopts) Add new -d and -E options.\n\t  (main) Add new -d and -E options, and create a linked list to\n\t  support multiple -c options.  Do not call vtysh_connect_all until\n\t  after vtysh_read_config(config_default) and vtysh_auth have\n\t  succeeded.  This prevents the vtysh.conf file from configuring\n\t  any daemons, and it ensures that authentication has been passed\n\t  before we send any commands to any daemons.  Call vtysh_connect_all\n\t  with any daemon name supplied with -d.  If it is unable to connect\n\t  to any daemons, issue an error message and exit immediately.\n\t  When used in -c mode, call vtysh_execute(\"enable\") before\n\t  executing the commands in order to match interactive behavior.\n\t  And detect embedded linefeed chars in -c commands and break them up\n\t  appropriately.\n\t* vtysh.h: (vtysh_connect_all) Fix proto to reflect new\n\t  daemon_name argument, and that it now returns an integer -- the\n\t  number of daemons to which we were able to connect.\n\t* vtysh.c: (vtysh_connect_all) Add a new daemon_name argument.\n\t  If supplied, connect only to that daemon.  And return\n\t  the number of daemons to which we were able to connect.\n\t  (vtysh_prompt): Performance enhancement -- make struct utsname\n\t  static so we call uname to get the hostname only once.\n"
    },
    {
      "commit": "5c1960687024a4ab16d33b58be8c410a935c583b",
      "tree": "9e4fa9016735f2d4fb95209ab6c3af4b58b78df4",
      "parents": [
        "f7a76abf3078bac6251d4e27f0143a9c0b14dde7"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Tue Jul 04 14:41:08 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Tue Jul 04 14:41:08 2006 +0000"
      },
      "message": "[doc] remove the auto-generated quagga.info file from CVS\n\n2006-07-04 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* quagga.info: remove auto-generated file. It will still be\n\t  present in dist tarballs, so shouldn\u0027t affect anyone but\n\t  direct users of CVS. Required texinfo version should be\n\t  widely available.\n\t* .cvsignore: ignore quagga.info\n"
    },
    {
      "commit": "d7e60dd7a9f0213aaa82d256a78ab74887946e53",
      "tree": "2e3488591d1ac48d10ddca05fa4cd68e3611f583",
      "parents": [
        "5f41e90e49b8ced6b5adac3933736067d2b24584"
      ],
      "author": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Thu Jun 29 20:20:52 2006 +0000"
      },
      "committer": {
        "name": "Andrew J. Schorr",
        "email": "ajschorr@alumni.princeton.edu",
        "time": "Thu Jun 29 20:20:52 2006 +0000"
      },
      "message": "[ospfd] Implement new ospf router subcommand \"log-adjacency-changes [detail]\"\n\n2006-06-28 Erik Muller \u003cerikm@internap.com\u003e\n\n\t* ospfd.h: Define 2 new struct ospf config flags:\n\t  OSPF_LOG_ADJACENCY_CHANGES and OSPF_LOG_ADJACENCY_DETAIL\n\t* ospf_nsm.c (nsm_change_state): Log adjacency changes if\n\t  requested.\n\t* ospf_vty.c (ospf_log_adjacency_changes): New command function\n\t  to implement ospf subcommand \"log-adjacency-changes [detail]\".\n\t  (no_ospf_log_adjacency_changes) Turn off log-adjacency-changes.\n\t  (show_ip_ospf) Show whether adjacency changes are logged.\n\t  (ospf_config_write) Add \"log-adjacency-changes [detail]\" to config.\n\t  (ospf_vty_init) Add ospf_log_adjacency_changes and\n\t  no_ospf_log_adjacency_changes.\n\t* ospfd.texi: Document new ospf router subcommand\n\t  \"log-adjacency-changes [detail]\".\n"
    },
    {
      "commit": "466c96562c6e39596dc441c30420b335f83f01ea",
      "tree": "80d9e7237ce49a7b87ceb01086269fcb223cc181",
      "parents": [
        "9560fa8ac994966a8da0ba23c46c0299164b7112"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon Jun 26 12:55:58 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon Jun 26 12:55:58 2006 +0000"
      },
      "message": "[doc] OSPF MD5 keyid documentation, fix texinfo warnings in bgpd.texi\n\n2006-06-26 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* ospfd.texi: Document that MD5 keyid is part of the protocol.\n\t* bgpd.texi: shut texinfo warnings up by replacing brackets in\n\t  variable with angle brackets.\n"
    },
    {
      "commit": "825cd49ead7a9222f93b37f65030f5ff325cd4ab",
      "tree": "3af7ef993c19a0fb178aefab60a30cf3f88611f9",
      "parents": [
        "4150f33ec17792c4258cb64de6128928ac104bf2"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Tue May 23 22:20:34 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Tue May 23 22:20:34 2006 +0000"
      },
      "message": "[doc] document neighbor ..... update-source\n\n2006-05-23 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* bgpd.texi: Document the update-source command.\n"
    },
    {
      "commit": "f371b1fb2bd0c615d44653d56a26df8f7245481d",
      "tree": "e1f1560a4defc02ec274ce94c40680c5bf9fc855",
      "parents": [
        "08f9fb1c4591bfc7cf0c5d174884ca161263787e"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Wed May 10 19:53:58 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Wed May 10 19:53:58 2006 +0000"
      },
      "message": "[doc] Update auto-generated quagga.info\n\n2006-05-10 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* quagga.info: update auto-built file.\n"
    },
    {
      "commit": "e3c5ffe169a999892e09f7e440466b622a510445",
      "tree": "e9e21dc4162d89c561ce7ec737b3f7468d0ba532",
      "parents": [
        "da5b30f6fb9437f1dc3d05a48e5e17f78695f820"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon May 08 14:40:39 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon May 08 14:40:39 2006 +0000"
      },
      "message": "[doc] bug #245, remove reference to non-existent log_mode argument\n\n2006-05-08 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* main.texi: --log_mode does not exist, remove, bug #245.\n"
    },
    {
      "commit": "5f03f141eced8bad4971fcc6ec7d7a538c227d8c",
      "tree": "7a166e6a89c3e98c25989fd4a7d823df66cfaf92",
      "parents": [
        "15a2b089ced3f1e956659e9ca88af45d1c48272c"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Thu May 04 07:37:37 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Thu May 04 07:37:37 2006 +0000"
      },
      "message": "[docs] Update ripd docs on version and authentication, see bugs #261,#262\n\n2006-05-04 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* ripd.texi: Add Version Control as a distinct section.\n\t  Expand Version Control section with overview text,\n\t  touching on insecurity of RIPv1 and referencing\n\t  authentication section, cleanup text of various version\n\t  commands.\n\t  RIP Authentication: Add overview text, refer to RIPv1 version\n\t  control, which is required to completely secure RIP.\n"
    },
    {
      "commit": "ab2416a0f3583545f683310adfc7ebce11d79622",
      "tree": "0d82593bd5df45fc4be1250b3c1b4098fb6ca69e",
      "parents": [
        "31802c05bf4111f95248371d4bb4d005df61de97"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon Apr 03 21:24:27 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Mon Apr 03 21:24:27 2006 +0000"
      },
      "message": "[doc] document version zserv header, add txt figures, make pdf figs nicer\n\n2006-03-31 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* fig*.txt: New files, txt versions of the diagrammes for the\n\t  info file.\n\t* protocol.texi: Document the new version 1 header.\n\t* routeserver.texi: Explicitly specify scaling widths for the\n\t  figures, only way to make them look reasonable, sadly.\n\t  Try fix some formatting and explicitely note lists as being\n\t  bulleted.\n\t* Makefile.am: convert seems to do png to pdf just fine. No\n\t  need for intermediate eps.\n\t  Add txt figure expansions and list as dependencies and\n\t  EXTRA_DIST files.\n"
    },
    {
      "commit": "4528ffa280f93ce64213bd79311dc9d7b3c6a12f",
      "tree": "63637cdf21b8867c58b19a6a91a3f6aa786f9642",
      "parents": [
        "7c7fa1b43100b4358ec0217d950b4aa9a2ec4bfd"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Sun Feb 19 07:16:25 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Sun Feb 19 07:16:25 2006 +0000"
      },
      "message": "[doc] Credit Jeroen Simonetti for contributing snmptrap.texi\n\n2006-02-19 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* quagga.info: update auto-built file.\n\t* ChangeLog: Fix old, existing entry for snmptrap.texi addition to\n\t  credit the author, who got in touch with me.\n\t* snmptrap.texi: Add comment line with author\u0027s details.\n"
    },
    {
      "commit": "53f953a500569b12bb3c60b094c52f1b4184c0fb",
      "tree": "a5fe03f2bd67e0b7e3552bd0930034c5aa66d30e",
      "parents": [
        "581a02a9f71f43012c67217fe12d97808875c352"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Jan 19 20:26:17 2006 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Jan 19 20:26:17 2006 +0000"
      },
      "message": "[version] bump configure.ac version number to 0.99.3\n\n2006-01-19 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* configure.ac: Bump to 0.99.3\n\t* doc/quagga.info: update auto-built file.\n"
    },
    {
      "commit": "0ed3192835bdf53c5b3b90541735131e9ed56602",
      "tree": "0b7533f6a8dd4a65bd0005fe251b9e684ab61cea",
      "parents": [
        "ec1a428343cad343969d569c56acbe6b02ab8f4f"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 25 20:23:46 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 25 20:23:46 2005 +0000"
      },
      "message": "2005-11-25 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* texinfo.tex: update to newer version, seems to now properly\n\t  scale the diagramme images in PDF output.\n"
    },
    {
      "commit": "2265f1ddcf8645fe2b4d3e994db643744a99bd09",
      "tree": "fc31446c1c502ee72d6199ba98be1661b6c9892c",
      "parents": [
        "0994c3a59c114e4e2427f2c02cb2f12881854e36"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 11 09:58:35 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 11 09:58:35 2005 +0000"
      },
      "message": "[trivia] update quagga.info, auto-built file\n\n2005-11-11 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* quagga.info: update auto-built file. Methinks it\u0027s time to\n\t  remove from CVS..\n"
    },
    {
      "commit": "5729e089d92dda6163d632e19b1b9dc0217c4893",
      "tree": "0726836a4af0e35ac0f1afa5b3b83c3034082db3",
      "parents": [
        "1189075bca319d9a0bc5be9a0548af75f6b36951"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 07 03:19:51 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 07 03:19:51 2005 +0000"
      },
      "message": "[doc] List snmptrap.texi as a source, so it gets included in dist\n\n2005-11-07 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* Makefile.am: snmptrap.texi needs to be listed as a source,\n\t  not disted otherwise.\n"
    },
    {
      "commit": "aa5943f771833113bab14bfd77dea8a9c770f61c",
      "tree": "324620397ebfd4ee96e5fddfb5e69449151a516c",
      "parents": [
        "a3957e3838145e3ca624236712bcb6999a35d9b1"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 04 21:53:59 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 04 21:53:59 2005 +0000"
      },
      "message": "2005-11-04 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* quagga.info: Update auto-built file\n\t* ospf6d.texi: Add example config\n\t* bgpd.texi: Add example configs. Couple of cleanups of format\n\t  and macros.\n\t* routemap.texi: Add an explanation of how route-maps work.\n\t  Document the call and exit-policy commands.\n"
    },
    {
      "commit": "a3957e3838145e3ca624236712bcb6999a35d9b1",
      "tree": "dc6309be79fb66a61734034e9a4af4e12240b1f6",
      "parents": [
        "e832203d8e660fbdbc71471cd8962c23b1721950"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 04 12:48:25 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Nov 04 12:48:25 2005 +0000"
      },
      "message": "2005-11-04 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* snmptrap.texi: Contributed documentation, contributors name\n\t  is lost (please get in touch). Configuring SNMP for logging\n\t  traps.\n\t* snmp.texi: Minor formatting changes.\n\t* quagga.info: Update auto-built file\n"
    },
    {
      "commit": "e5b308d1af147c78acd2803f4006463e6ff67444",
      "tree": "712ff117dd7d92e03f345199d731ed762433a62a",
      "parents": [
        "88d6cf37f66c3b7d1abdaa20875418192d5219b8"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Oct 29 20:19:49 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Oct 29 20:19:49 2005 +0000"
      },
      "message": "2005-10-29 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* ospfd.texi: Document the new spf and max-metric commands, and\n\t  the additional form of dead-interval. Add documentation for\n\t  various other commands. Cleanup misc stuff, citations, etc.\n\t  Add some example configurations.\n\t* overview.texi: RFC3137 support added.\n\t* Makefile.am: Make quagga.pdf depend on the _TEXINFOS\n\t  variable, this still doesn\u0027t fix the dependency though,\n\t  sadly.\n"
    },
    {
      "commit": "d751f00299e0cd9be8f0e702288efe48ac1ddbca",
      "tree": "548f9962891c609383391b43e1936cfceb93d5ab",
      "parents": [
        "d06b2a64b7093f998e7b0f33454efc23190123ac"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Oct 11 04:01:09 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Oct 11 04:01:09 2005 +0000"
      },
      "message": "2005-10-11 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* quagga.texi: Rejiggle the copyright sections a bit, seems to\n\t  make makeinfo happier and generates info pages again on FC4.\n\t* quagga.info: Update this auto-built file.\n"
    },
    {
      "commit": "30d0383dcf03960d0b32b127475e749f0b87e748",
      "tree": "3618935be3a52c680338381d86d992211cc6d0fe",
      "parents": [
        "649e853f773208300dd4c07e5e56a1ddb5aa1d7b"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Apr 29 03:16:42 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Apr 29 03:16:42 2005 +0000"
      },
      "message": "2005-04-29 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* defines.texi.in: Add PACKAGE_NAME, PACKAGE_STRING.\n\t* quagga.texi: Use PACKAGE_NAME, this is more to give me an excuse\n\t  to update quagga.texi so that the \u0027UPDATED\u0027 in version.texi will\n\t  be more recent, the Makefile seems to be dumb and not examine\n\t  the texi files from which quagga.texi is generated.\n\t* quagga.info: Fresh copy to match updates.\n"
    },
    {
      "commit": "649e853f773208300dd4c07e5e56a1ddb5aa1d7b",
      "tree": "2f901ffc788dbe588312f319ed7440e3aea90367",
      "parents": [
        "5e4008f7b8d478a74efec68589a7acfbb049d286"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Apr 28 18:21:15 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Apr 28 18:21:15 2005 +0000"
      },
      "message": "2005-04-28 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* quagga.info: updated\n\t* Makefile.am: automake seems to depend doc built stuff on srcdir\n\t  for some reason, or maybe its cause we have quagga.info,\n\t  quagga.texi in CVS - not sure. Anyway, the static rule for\n\t  quagga.pdf should depend on the srcdir quagga.texi in that case.\n"
    },
    {
      "commit": "08e044f4eb21d8770c3a0d79c473ce1d807a9023",
      "tree": "04719c5ef9496683198f4b16d19ee5e2705d4218",
      "parents": [
        "4d38fdb421ee04430ac2f4d4e8ef4a4e27c1020b"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Apr 28 17:45:37 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Apr 28 17:45:37 2005 +0000"
      },
      "message": "2005-04-28 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* quagga.info: updated\n"
    },
    {
      "commit": "a0e64a63846e75cd038ade65669b27eeaec41cf1",
      "tree": "ba8d55453a57b3179b388ea01cf88e0b37e1c426",
      "parents": [
        "151fe8a484ab84cf6437e6755f9725e2634bf702"
      ],
      "author": {
        "name": "ajs",
        "email": "ajs",
        "time": "Fri Apr 22 13:14:49 2005 +0000"
      },
      "committer": {
        "name": "ajs",
        "email": "ajs",
        "time": "Fri Apr 22 13:14:49 2005 +0000"
      },
      "message": "2005-04-22 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* bgpd.8,isisd.8,ospf6d.8,ospfd.8,ripd.8,ripngd.8,zebra.8: Fix\n\t  spelling mistake: idenifier -\u003e identifier.\n"
    },
    {
      "commit": "151fe8a484ab84cf6437e6755f9725e2634bf702",
      "tree": "e00ae06388d4ad83d383907c680aaa81de8538c7",
      "parents": [
        "17fc128d6422d3c6045ff671973911c17db39276"
      ],
      "author": {
        "name": "ajs",
        "email": "ajs",
        "time": "Fri Apr 22 12:56:37 2005 +0000"
      },
      "committer": {
        "name": "ajs",
        "email": "ajs",
        "time": "Fri Apr 22 12:56:37 2005 +0000"
      },
      "message": "2005-04-22 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* bgpd.8,isisd.8,ospf6d.8,ospfd.8,ripd.8,ripngd.8,zebra.8: Fix\n\t  spelling mistake: intrefaces -\u003e interfaces.\n"
    },
    {
      "commit": "c7959916ffe11daf57490da854b069f4fe529153",
      "tree": "0ff05f9b508981da07a8886b72d22214a24c3cbe",
      "parents": [
        "1b73de8b1fefdb3b1ac3d483f2ac0492991c7a1e"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Apr 10 16:43:40 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Apr 10 16:43:40 2005 +0000"
      },
      "message": "2005-04-10 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* quagga.info: Update to match bgpd.texi addition\n"
    },
    {
      "commit": "6811845b67999861388cf00d3ca0ee8471d29876",
      "tree": "1f7f08f171164b1a75b66a45093ccb44217dff12",
      "parents": [
        "4a8164e5b310094315e2c50d73aeea489766a48a"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Apr 08 15:40:36 2005 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Apr 08 15:40:36 2005 +0000"
      },
      "message": "\t* bgpd.texi: Document new \"bgp bestpath as-path confed\" command.\n\t* bgp_aspath.[ch], bgp_route.c, bgp_vty.c, bgpd.[ch]: Allow to enable\n\t  the length of confederation path segments to be included during the\n\t  as-path length check in the best path decision.\n"
    },
    {
      "commit": "d9905f016154f18cdf0dc1cc4602011dc8454830",
      "tree": "834d6d8d48f0caea0f29cc69d4d330d617d24b9b",
      "parents": [
        "3d1dc85765816a92f06e0b11f52411dac0f8abae"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Apr 05 08:04:18 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Apr 05 08:04:18 2005 +0000"
      },
      "message": "2005-04-05 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* Makefile.am: Get rid of built_sources. It causes them to be added\n\t  to dist, and the dist host can not generate the PDFs.\n"
    },
    {
      "commit": "a47d98f4b7d6e3c1f5298912672f7b4d55a203f0",
      "tree": "51eaf44358a39c0e99e429ffaa85b8a41cc2f095",
      "parents": [
        "851adbd947692bab9985e08865330d75c56ff253"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 18:53:00 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 18:53:00 2005 +0000"
      },
      "message": "2005-04-02 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* Makefile.am: Urg, dont use automake _SOURCES, _BUILT_SOURCES\n\t  for figures, automake doesnt know anything about them.\n"
    },
    {
      "commit": "386e61502d391adb985ac1487825349ec85e6a8c",
      "tree": "b33f187e2408cc8ff5d70c12db1ef1af91aeb54a",
      "parents": [
        "3849db25b0bda7cd67b0ef7918737aba6b0b5b41"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 17:24:43 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 17:24:43 2005 +0000"
      },
      "message": "2005-04-02 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* .cvsignore: ignore eps files, built from sources\n"
    },
    {
      "commit": "47004ec501bd70d558c11af05d8bacd66a8c7c25",
      "tree": "88cf175ab910d555798a503f7eb5892f007c8d96",
      "parents": [
        "bbd938e2e64badb8f32b24e0b08df7ccd7696990"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 12:13:59 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 12:13:59 2005 +0000"
      },
      "message": "2005-04-02 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* Makefile.am: quagga_TEXINFOS should depend on figures_BUILT_SOURCES.\n"
    },
    {
      "commit": "bbd938e2e64badb8f32b24e0b08df7ccd7696990",
      "tree": "ef55a7765aeab7d68ac1e93aff114c529db1c4fa",
      "parents": [
        "b7ed1ec7d62f6db50de882d1be08e1e32acc7909"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 10:18:42 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Apr 02 10:18:42 2005 +0000"
      },
      "message": "2005-04-02 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* fig{-{normal,rs}-processing,_topologies_{rs,full}}.dia: new\n          files, dia diagramme XML versions of the original corresponding\n          EPS encapsulated bitmaps.\n\t* fig{-{normal,rs}-processing,_topologies_{rs,full}}.png: new\n\t  files, png exports by dia of the source dia diagrammes above.\n\t* fig{-{normal,rs}-processing,_topologies_{rs,full}}.eps: removed,\n\t  replaced by above dia source.\n\t* routeserver.texi: remove extension in image macros.\n\t* quagga.info: updated build\n\t* Makefile.am: Add rules to build eps (using \u0027convert\u0027), png (using\n\t  dia). Add figures_BUILT_SOURCES to extra_dist to avoid the\n\t  dependency on dia :) (amongst other things) for dist users.\n"
    },
    {
      "commit": "29c4c9bd11aaf36a0b3ed2414c816cdb8d4178bd",
      "tree": "3c41e71cec1ed16fb02955bb96d35d6ab696a690",
      "parents": [
        "6cf159b97848503ee9da0273eb97a6712369fd24"
      ],
      "author": {
        "name": "vincent",
        "email": "vincent",
        "time": "Fri Mar 25 13:05:47 2005 +0000"
      },
      "committer": {
        "name": "vincent",
        "email": "vincent",
        "time": "Fri Mar 25 13:05:47 2005 +0000"
      },
      "message": "2005-03-25 Jean-Mickael Guerin \u003cjean-mickael.guerin@6wind.com\u003e\n\t* Extensions to Neighbor Discovery for Mobile IPv6\n"
    },
    {
      "commit": "c70257d0afa4df7c838dc7c8f5948baca5f12657",
      "tree": "fb5c1333bd7cf222c3c7054b97c0c6cecc350ec9",
      "parents": [
        "1e2213541bbda26c49667b699a333d87bcc0f2e6"
      ],
      "author": {
        "name": "ajs",
        "email": "ajs",
        "time": "Thu Feb 03 17:12:01 2005 +0000"
      },
      "committer": {
        "name": "ajs",
        "email": "ajs",
        "time": "Thu Feb 03 17:12:01 2005 +0000"
      },
      "message": "2005-02-03 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* basic.texi: Add note about last-resort crash logging to /var/tmp\n\t  when file logging is not configured.\n\t* quagga.info: updated build of autogenerated file\n"
    },
    {
      "commit": "f83d18dce1c13f089cbd09262b17444da659347a",
      "tree": "ca2eff8b393a9b88181103de04443315c8242a84",
      "parents": [
        "6d69429c1bff7291bac52a05234c12434f152a94"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Jan 24 10:24:31 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Jan 24 10:24:31 2005 +0000"
      },
      "message": "2005-01-24 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* configure.ac: Bump version to 0.99.0\n\t* doc/quagga.info: Version bump (autogenerated)\n"
    },
    {
      "commit": "afc1e2ddf29fffe996f44d0f8eca99522e75d0ba",
      "tree": "3a034f391773e4ddd031678eac96b54fdcc70794",
      "parents": [
        "86f1fd9615391485baf37afe1055b7d8bf64b4a8"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Jan 10 22:31:16 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Jan 10 22:31:16 2005 +0000"
      },
      "message": "2005-01-10 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* texinfo.tex: Updated to a version which understands @{ and @}\n\t* vtysh.texi: Add node name for @section\n\t* quagga.info: updated build of autogenerated file\n"
    },
    {
      "commit": "220d0c0ea3a3aab81836a6aad4137aa40270512d",
      "tree": "b696448a7f7e9eb4c97a8a25f7ea2a8df605773f",
      "parents": [
        "1f3585ea3da831f592bc0290a1b969dc002c6ceb"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Jan 07 14:17:39 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Jan 07 14:17:39 2005 +0000"
      },
      "message": "2005-01-07 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* configure.ac: Bump version to 0.98.0\n\t* doc/quagga.info: Version bump (autogenerated)\n"
    },
    {
      "commit": "1f3585ea3da831f592bc0290a1b969dc002c6ceb",
      "tree": "e2a34e7bf4d7ad0afdb8f909551b3029be3cf396",
      "parents": [
        "865b852cbf82f2da6cd3908e76176ceb6ad33d26"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Jan 05 11:58:31 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Jan 05 11:58:31 2005 +0000"
      },
      "message": "2005-01-05 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* configure.ac: Bump version to 0.97.5\n\t* doc/quagga.info: autogenerated, version bump.\n"
    },
    {
      "commit": "2b70200c5797ca60acf2011fe62f33fa161be54b",
      "tree": "100bd14ebcf66566809154f0e41b053ffe4970eb",
      "parents": [
        "6f594023a50ccb3dd4ce809614789104051d91bb"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Dec 23 20:09:44 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Dec 23 20:09:44 2004 +0000"
      },
      "message": "2004-12-23 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\tconfigure.ac: Bump version to 0.97.4\n\tdoc/quagga.info: ditto (autogenerated file)\n"
    },
    {
      "commit": "ee3e115747e5ef48c5580072f680a0f96512b7c0",
      "tree": "251bb654466dd802c412f780afd119ada9ac0b9a",
      "parents": [
        "2885f72d546a9d4673e4b9a607f8e30ab2e88cc9"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sat Dec 18 15:59:25 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sat Dec 18 15:59:25 2004 +0000"
      },
      "message": "Add isisd.8 into list of man pages.\n"
    },
    {
      "commit": "274a4a4447b13f89f8237156a887d05a24a73cc6",
      "tree": "d5c2c6ee94bb77ef4346bcc07834808a75210bfd",
      "parents": [
        "5e76477456ce8bc4a1eeaccb5c5e1d3d99ab1300"
      ],
      "author": {
        "name": "ajs",
        "email": "ajs",
        "time": "Tue Dec 07 15:39:31 2004 +0000"
      },
      "committer": {
        "name": "ajs",
        "email": "ajs",
        "time": "Tue Dec 07 15:39:31 2004 +0000"
      },
      "message": "2004-12-07 Andrew J. Schorr \u003cajschorr@alumni.princeton.edu\u003e\n\n\t* bgp_main.c: (main) The 2nd argument to openzlog has been removed.\n\t* isis_main.c: (main) The 2nd argument to openzlog has been removed.\n\t* ospf6_main.c: (main) The 2nd argument to openzlog has been removed.\n\t  Note that stdout logging will no longer be enabled by default when\n\t  not running as a daemon.\n\t* ospf_main.c: (main) The 2nd argument to openzlog has been removed.\n\t* rip_main.c: (main) The 2nd argument to openzlog has been removed.\n\t* ripng_main.c: (main) The 2nd argument to openzlog has been removed.\n\t* main.c: (main) The 2nd argument to openzlog has been removed.\n\t  So stdout logging will no longer be enabled by default.\n\t* irdp_main.c: (irdp_finish) Reduce severity of shutdown message\n\t  from LOG_WARNING to LOG_INFO.\n\t* vtysh.c: Make several functions static instead of global.\n\t  Added several commands to support destination-specific logging levels.\n\t  (vtysh_completion) This function is unused, so comment it out.\n\t* basic.texi: Document new logging features.  Separate basic config\n\t  commands from basic VTY commands.\n\t* log.h: Replace struct zlog flags and maskpri fields with maxlvl\n\t  array to support individual logging levels for each destination.\n\t  Remove the 2nd argument to openzlog since the default logging config\n\t  should be standardized inside the library.  Replaced the\n\t  zlog_set_flag and zlog_reset_flag functions with zlog_set_level.\n\t  And zlog_set_file now requires an additional log_level argument.\n\t  Declare zlog_proto_names for use inside command.c in the\n\t  \"show logging\" command.  Added defines useful for command\n\t  construction.\n\t* log.c: (vzlog) Decide where to send the message based on the\n\t  individual logging levels configured for each destination.\n\t  Remove support for ZLOG_STDERR since it was never actually used.\n\t  Support record-priority for terminal monitors.\n\t  (zlog_signal,zlog_backtrace_sigsafe) Support destination-specific\n\t  logging levels.  Remove stderr support (was never used).  Added\n\t  support for terminal monitor logging.\n\t  (_zlog_assert_failed) Increase message severity to LOG_EMERG.\n\t  (openzlog) Remove 2nd argument since default config should be\n\t  standardized in library.  By default, terminal monitoring\n\t  is set to debug, and all other logging is disabled.\n\t  (zlog_set_flag,zlog_reset_flag) Removed.\n\t  (zlog_set_level) New function to replace zlog_set_flag and\n\t  zlog_reset_flag.  Supports destination-specific logging levels.\n\t  (zlog_set_file,zlog_reset_file) Support file-specific logging level.\n\t  (zlog_rotate) Log an error message if fopen fails, and support\n\t  new file-specific logging level.\n\t* command.h: Change DEFUN_CMD_FUNC_DECL and DEFUN_CMD_FUNC_TEXT so that\n\t  command functions will be static instead of global.  Remove\n\t  declarations for config_exit and config_help.  Define new macros\n\t  DEFUNSH_ATTR, DEFUNSH_HIDDEN, and DEFUNSH_DEPRECATED so we can\n\t  have deprecated commands in vtysh.  Similarly, for completeness,\n\t  define macros ALIAS_SH, ALIAS_SH_HIDDEN, and ALIAS_SH_DEPRECATED.\n\t  Also, fix bug in ALIAS_ATTR macro (didn\u0027t matter because it\n\t  was never used).\n\t* command.c: Make many functions static instead of global.\n\t  (facility_name,facility_match,level_match) New functions\n\t  to support enhanced destination-specific logging levels.\n\t  (config_write_host) Support new destination-specific logging levels.\n\t  (config_logmsg) Added new \"logmsg\" command to help test logging\n\t  system.\n\t  (show_logging) Added \"show logging\" command to show the current\n\t  configuration of the logging system.\n\t  (config_log_stdout_level) Support explicit stdout logging level.\n\t  (no_config_log_stdout) Now takes optional LEVEL arg.\n\t  (config_log_monitor,config_log_monitor_level,no_config_log_monitor)\n\t  New commands creating new \"log monitor\" commands to set terminal\n\t  monitoring log level.\n\t  (config_log_file_level) Support explicit file logging level.\n\t  (config_log_syslog_level) Support explicit syslog logging level.\n\t  (config_log_facility,no_config_log_facility) Implement new\n\t  \"log facility\" command.\n\t  (cmd_init) Add hooks for new commands: \"show logging\", \"logmsg\",\n\t  \"log stdout \u003clevel\u003e\", \"log monitor\", \"log monitor \u003clevel\u003e\",\n\t  \"no log monitor\", \"log file \u003cfilename\u003e \u003clevel\u003e\",\n\t  \"no log file \u003cfilename\u003e \u003clevel\u003e\", \"log syslog \u003clevel\u003e\",\n\t  \"log facility\", and \"no log facility\".\n\t* vty.h: Added a \"level\" argument to vty_log so it can support\n\t  \"log record-priority\".  Declare new function vty_log_fixed for\n\t  use in signal handlers.\n\t* vty.c: (vty_log,vty_log_out) Added a \"level\" argument to support\n\t  \"log record-priority\" for vty terminal monitors.\n\t  (vty_down_level) Use config_exit_cmd.func instead of calling\n\t  config_exit directly (since command functions will now be static\n\t  instead of global).\n\t  (vty_log_fixed) New function to send terminal monitor messages\n\t  from inside a signal handler.\n"
    },
    {
      "commit": "c065230a4c617a1cdf8813dd25384bcc9591f61a",
      "tree": "42285fe5604e43ada3b53ac9a77ba1e3c4464b52",
      "parents": [
        "accb156b9b1c3f4b46ab01f8850200f450fc40d8"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Nov 25 19:33:48 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Nov 25 19:33:48 2004 +0000"
      },
      "message": "Make group to run daemon as configurable. Fixes #2 from Bugzilla #64.\n"
    },
    {
      "commit": "00c8dc799933c569305e47fc9219f2df7a4c295d",
      "tree": "2ba8ea5ba231e3417d662a5916e05d9e2e62a010",
      "parents": [
        "6099b3b56956322567323c11fd698b2328c6826b"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 22 18:06:59 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 22 18:06:59 2004 +0000"
      },
      "message": "2004-11-22 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* bgpd.8: escape -/+ signs, reported by ESR to bug-zebra.\n"
    },
    {
      "commit": "48577196af0cd83272cb885ac018d19e30058653",
      "tree": "5eeecab312ea89381ce8130d64973dc6ef3dc894",
      "parents": [
        "996ac2dcb3dc40d1ba4192c119e252dbb84390f0"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Nov 19 06:41:49 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Nov 19 06:41:49 2004 +0000"
      },
      "message": "Make quagga.info in cvs actually useful for those who haven\u0027t latest\nmakeinfo:\n* Don\u0027t attempt to generate it after every ./configure.\n* Don\u0027t remove it while cleaning up.\n"
    },
    {
      "commit": "56d1d2027bc6746e1a051067b24a792595292909",
      "tree": "17a3252c6afc5424fa755c5055d05edc41c93a17",
      "parents": [
        "cbf566e639a882e9075f61cbca8246e32a9a43fc"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 15 21:56:53 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 15 21:56:53 2004 +0000"
      },
      "message": "2004-11-15 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* quagga.info: Add generated file to CVS, as it requires most recent\n          texinfo to build, until such time as texinfo 4.7 is more\n          prevalent.\n"
    },
    {
      "commit": "fbaf39e9b00580e8df2d5d50f97643b42caf1868",
      "tree": "6289ce481228249931c98b331f06c960bc46cc59",
      "parents": [
        "05e85fa947f3775ac7417f5aa7111d056971bb18"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 15 00:45:44 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 15 00:45:44 2004 +0000"
      },
      "message": "2004-11-15 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* routeserver.texi: Strip ctrl-M from line endings, note by\n\t  sigma@smx.pair.com\n"
    },
    {
      "commit": "b86718ea99cce28f4376af89a6c49b9ca6d77b7c",
      "tree": "23ffcae4a451da3ab6d03ed02f25978f07431970",
      "parents": [
        "e050db2678b9ff002cd8b06da3db4d35bf2e1837"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 08 17:34:07 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 08 17:34:07 2004 +0000"
      },
      "message": "Oops, wrong date on changelog entries..\n"
    },
    {
      "commit": "e050db2678b9ff002cd8b06da3db4d35bf2e1837",
      "tree": "eaaa3eafb493884b9edcd9eec5d192876779f066",
      "parents": [
        "2265d20c1a568c7633d086ccf0233761ff942a2c"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 08 16:28:39 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 08 16:28:39 2004 +0000"
      },
      "message": "2004-11-07 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* Makefile.am: Add routeserver.texi to quagga_TEXINFOS.\n\t  Add quagga.info to clean files list (would have thought automake\n          would have done this, but it doesnt seem to)\n"
    },
    {
      "commit": "3e6064f8384e5477593b8af0442931ca5930918b",
      "tree": "9c4f6f81cda37bd789646564b3e73198b2b9e2ee",
      "parents": [
        "53916edd9f35316ece7ac68ff2b2053d6c4df71b"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 08 12:08:35 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Nov 08 12:08:35 2004 +0000"
      },
      "message": "2004-11-07 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* quagga.texi: include routeserver.texi. TODO: integrate the current\n          multiple-instance orientated bgpd route-server section with the\n          new route-server docs.\n"
    },
    {
      "commit": "6a22b1fc58e3690764bf7aa74d1549f26c315367",
      "tree": "3524a6a05340be54f0ad31fddb2df4119d696bec",
      "parents": [
        "0c3368a8da771423da4c59a9ccd65d9eb4f7af6a"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Nov 07 19:39:13 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Nov 07 19:39:13 2004 +0000"
      },
      "message": "2004-11-07 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* Makefile.am: Add automatic rule to build pdf\u0027s from eps figures.\n\t  Clean *.pdf. Add rule for quagga.pdf (as the eps.pdf pattern\n          probably otherwise will override automake\u0027s rule for quagga.pdf)\n\t* overview.texi: URL was causing TeX overfull, put on newline.\n\t* quagga.texi: Put the copyright notice into @copying section, as\n\t  is proper. Strip trailling space from the main menu lines.\n\t* rip(ng)?d.texi: Minor reformatting.\n\t* Add the route server docs.\n\t* bgpd.texi: remove unneeded page breaks. The 6Bone example\n          overflows though.\n"
    },
    {
      "commit": "0c3368a8da771423da4c59a9ccd65d9eb4f7af6a",
      "tree": "60ad681115372956c5acca38641ab88a38715cb1",
      "parents": [
        "76b89b4a9cba0ce19033458f69f76f4130e9c628"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Nov 07 19:00:16 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Nov 07 19:00:16 2004 +0000"
      },
      "message": "2004-11-07 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* Add the route server docs.\n\t* routeserver.texi: new file, texinfo\u0027fied and slightly modified\n          version of the original TeX from James Luis Rubio.\n\t* fig-*.eps: new files, diagrammes.\n"
    },
    {
      "commit": "76b89b4a9cba0ce19033458f69f76f4130e9c628",
      "tree": "38546628efecddf769ff0e387a392c447abf8111",
      "parents": [
        "1f8f61a7d51c59f392f897d6654cac28ae08ea70"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Nov 06 17:13:09 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Nov 06 17:13:09 2004 +0000"
      },
      "message": "2004-11-06 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* defines.texi.in: New file, texi variables should be set here,\n          autoconf substitution is available. Define common AUTHORS,\n          COPYRIGHT_YEAR and COPYRIGHT_STR vars.\n\t* (global): Make use of makeinfo node pointer auto-creation\n          to avoid having to fully specify links for nodes, so we only have\n          to specify current node name - simplifies text slightly.\n          Remove extraneous newlines which appear to cause extra blank pages\n          to be added in output.\n          Update copyright strings which appear in various places to\n          use the new COPYRIGHT_STR texinfo variable.\n\t  Change url to uref, the former need not output an actual\n\t  hyperlink depending on version of texinfo, the latter should if\n\t  supported by the format (eg PDF).\n\t* texinfo.tex: Update to a more recent version. previous file\n\t  was many many years old. This file should possibly be removed\n          altogether, and allowed to be installed by automake.\n        * quagga.texi: Make use of automake\u0027s version.texi feature to\n          have VERSION and some other vars auto-defined. include\n          defines.texi. Change copyright strings to use the COPYRIGHT_STR\n          variable.\n\t* install.texi: Make the privs section an actual section. Ditto for\n\t  the Linux notes.\n\t* overview.texi: Supply URL for Quagga, where format allows. Tidy up\n          one or two paragraphs slightly.\n\t  Update the section on supported platforms.\n\t  Remove the ZNOG list stuff, direct reader to the website for\n          further information on email lists.\n\t* vtysh.texi: Update the integrated config file section. Make the\n\t  commands sections so correct PDF indexes are built.\n"
    },
    {
      "commit": "54aa6b2d796416ed0d606c49bf4a0f1e62b93401",
      "tree": "528b7cdd30c07ae87d9e7a672d09423f5e9c451f",
      "parents": [
        "4f8b5bb13888e5ae56070f8d9e3a9de14a228be2"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Oct 12 06:05:34 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Oct 12 06:05:34 2004 +0000"
      },
      "message": "ospf6d supports SNMP as well now.\n"
    },
    {
      "commit": "c3abdb722d35eb93ca72078a7da1b4661accab27",
      "tree": "b89076220a74f3ca9c5e408331d4f2206bbdaed1",
      "parents": [
        "e2ea9fef99392299d6291067522eef0d99e1714c"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Oct 11 16:27:03 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Oct 11 16:27:03 2004 +0000"
      },
      "message": "Disable ospfapi init by default.\n"
    },
    {
      "commit": "e2ea9fef99392299d6291067522eef0d99e1714c",
      "tree": "4139f0155439cade8dda9566b550c0ec6ffa13c7",
      "parents": [
        "5862ff529effd26414827a6692c1e841ebb189a0"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Oct 11 14:33:23 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Oct 11 14:33:23 2004 +0000"
      },
      "message": "2004-10-11 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* ospfd.texi: reformat the ospf md5 paragraph, add an additional\n\t  way to work around bad clocks.\n"
    },
    {
      "commit": "e7168df4eff0d377621c45deb32cfcfa72e0dd83",
      "tree": "86c4017761ffd8cfdbc16223915a9f537844c4f2",
      "parents": [
        "eef1fe11b89c5ec3c035ff6e4a9acfbc5780b539"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sun Oct 03 20:11:32 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sun Oct 03 20:11:32 2004 +0000"
      },
      "message": "Big vtysh cleanup. See changelogs for details.\n"
    },
    {
      "commit": "b5f310cb9f78b140f1c747148cad6889133597fc",
      "tree": "19a9177f8d8488fe853bf142fe34bbb6a12290a6",
      "parents": [
        "b63dc1f30ee935184918becd4dbfd535c632c620"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Sep 13 13:15:25 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Sep 13 13:15:25 2004 +0000"
      },
      "message": "2004-09-11 Paul Jakma \u003cpaul@dishone.st\u003e\n\n        * doc/quagga.texi: Update copyright. Contents should be at beginning\n          of docs...\n\t* redhat/quagga.spec.in: wee keep_build define, to keep build dir.\n"
    },
    {
      "commit": "4fc7085cfa36103b491aec130346f1a632187849",
      "tree": "d05ebffd8f518ba368c77c78004152608c76059a",
      "parents": [
        "8d0f15fd1b842eb9ca7b3d116c7b6de63af3c195"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Sep 12 05:48:35 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Sep 12 05:48:35 2004 +0000"
      },
      "message": "2004-09-11 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* ospfd.texi: OSPF MD5 auth requires stable time.\n"
    },
    {
      "commit": "c34b6b577ef58e7609de1e088e7923c4c056cfeb",
      "tree": "6cc1c399962c8dec074fe21aad73cc1fc7cad3dd",
      "parents": [
        "7b90143f14ba21f6bd3ff2c8b60f69500f46c0e8"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Aug 31 13:41:49 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Aug 31 13:41:49 2004 +0000"
      },
      "message": "Commit my hack (yes, I still call it hack) - command line switch for zebra\ndaemon to change netlink receive buffer size.\n"
    },
    {
      "commit": "67e29abc5800ec77a3ee36add6adfe5fa8c38351",
      "tree": "73a93502607cac89fa3634997832b0068774fe53",
      "parents": [
        "9a0962651b0837b5678da0ef88715ec438f9dcb5"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Aug 26 22:21:31 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Aug 26 22:21:31 2004 +0000"
      },
      "message": "More vtysh fixes. Specifying configuration from command line works now.\n"
    },
    {
      "commit": "246c135ecf589aad215374daa982b36d7b3e6e0c",
      "tree": "c9498e2f63022e31198ed5d9a8823fe56cffb74d",
      "parents": [
        "55e7ecd114cd4f29b529f00cc1fe5d02d0f5b34f"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Aug 10 12:00:34 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Aug 10 12:00:34 2004 +0000"
      },
      "message": "I am bored. But I hate questions why there are man pages from version 0.88.\nVtysh man page looks already how it should look IMHO, the rest need more\nwork.\n"
    },
    {
      "commit": "4f4795e83fb4ddcc0d19322478e9cc422a60c7c4",
      "tree": "31bef64fe9320f5548d47c71d86262127db7d515",
      "parents": [
        "d191eba1b091b9586969c4608d9c757f73b6c265"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Jul 31 15:16:47 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Jul 31 15:16:47 2004 +0000"
      },
      "message": "oops, forgot to update changelog.\n"
    },
    {
      "commit": "f2bfdee5f9db5363fcd13763eca3fda729067d57",
      "tree": "dc9533e55d3edc3cab50cb0f11aad3968674a16e",
      "parents": [
        "fc9d074576c89299cb624b49810b52eda2da9b2c"
      ],
      "author": {
        "name": "gdt",
        "email": "gdt",
        "time": "Wed Jun 30 17:25:15 2004 +0000"
      },
      "committer": {
        "name": "gdt",
        "email": "gdt",
        "time": "Wed Jun 30 17:25:15 2004 +0000"
      },
      "message": "Use EXTRA_DIST to distribute files, and don\u0027t list directories.\nRemove disthook that removed the crud that was copied in due to this.\n"
    },
    {
      "commit": "dc0b5ce220387b3982d7120ce2273a9094e6a778",
      "tree": "4739a847c2a569499bf63bb7d59d77159950f8c3",
      "parents": [
        "11dde9c2f03d3f3e0b2226378d70b7e3b9b219b2"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon May 31 14:04:29 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon May 31 14:04:29 2004 +0000"
      },
      "message": "Forgot to commit ChangeLog with last doc/ commit.\n"
    },
    {
      "commit": "6c110e700c21ef3d1d958da1df54261960d7ef07",
      "tree": "857727aec02f197ab5bbeb1169ce9977c25d8502",
      "parents": [
        "b84d3a1b6e3e915a0f2e24f13c0445fae8f37a6f"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Nov 27 13:02:03 2003 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Nov 27 13:02:03 2003 +0000"
      },
      "message": "Added info about -A and -u command line switches to man pages.\n"
    },
    {
      "commit": "718e3744195351130f4ce7dbe0613f4b3e23df93",
      "tree": "bac2ad39971cd43f31241ef123bd4e470f695ac9",
      "parents": [],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Dec 13 20:15:29 2002 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Dec 13 20:15:29 2002 +0000"
      },
      "message": "Initial revision\n"
    }
  ]
}
