)]}'
{
  "log": [
    {
      "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": "a2c0a57b219d419541467dca88376cf74874a2d5",
      "tree": "907e30d0f1320cea35b8624446844ab5024e31de",
      "parents": [
        "5a64665039dc98c341fd8d50458ec2a72c5ebbf5"
      ],
      "author": {
        "name": "gdt",
        "email": "gdt",
        "time": "Fri Nov 05 12:59:21 2004 +0000"
      },
      "committer": {
        "name": "gdt",
        "email": "gdt",
        "time": "Fri Nov 05 12:59:21 2004 +0000"
      },
      "message": "spelling: s/supress/suppress/\n"
    },
    {
      "commit": "3c035aa8716efa6f677e43435c5eb9bac6825518",
      "tree": "ea28fd6b6beadd72d3619315dc66ee0d03a3f7d3",
      "parents": [
        "e064d6d9c3c3319c62fe4fac3e4e5f7a1941a98c"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Nov 02 18:59:49 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Nov 02 18:59:49 2004 +0000"
      },
      "message": "- Add .arch-ids and .arch-inventory to cvsignore, to allow one to use arch\n  with CVS trees.\n"
    },
    {
      "commit": "2bfc7c05dde63f828a06892e33abcae2e30dd18a",
      "tree": "89e7d61f5d593953aafaee109f125cdb0473f937",
      "parents": [
        "75e15fe4430bf6f9c5bd65b851d771e88bbd2096"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Oct 31 11:21:16 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Oct 31 11:21:16 2004 +0000"
      },
      "message": "- update cvs ignore, ignore quagga.dvi, quagga.ps, etc.\n"
    },
    {
      "commit": "81bc8c7a4ed67f2add4d7a67250393376e7bc4e1",
      "tree": "6d2745393bdde3d8fa84f1fb7de28f1418e9c654",
      "parents": [
        "501ba490846e87e6fd5bfea05c31dce1777915b9"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Oct 14 23:07:37 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Oct 14 23:07:37 2004 +0000"
      },
      "message": "Missing comma.\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": "8552e37427c8c6f3b3f5e02e55e2a34b28604af6",
      "tree": "05f4aab41232321bc2d100bf61e717e3f76b7c1e",
      "parents": [
        "c9eca01b298b83a849a608477f5f5b978a58167e"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Oct 11 12:14:22 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Oct 11 12:14:22 2004 +0000"
      },
      "message": "Commas -\u003e dots.\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": "bbc9ce2aa3985f3df242d2be49ebcc2bc6dd7f3a",
      "tree": "62288e2ca538a80c41e353bf9c37e66765358237",
      "parents": [
        "f891f4438d65e93d5a8224b1b579c9c089c91c27"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed Sep 15 07:38:54 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed Sep 15 07:38:54 2004 +0000"
      },
      "message": "There is no such option any more.\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": "0b7787c542aa8470797a473c5dae8a8fb2b3cfcb",
      "tree": "7fe255ec99ae3715db7f7888fff8a5286ba14ee6",
      "parents": [
        "3b68735fc38871bdcc9fc19f38fab244f86e710b"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Aug 23 18:03:28 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Aug 23 18:03:28 2004 +0000"
      },
      "message": "Ignore documentation build files (indexes, etc..)\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": "d191eba1b091b9586969c4608d9c757f73b6c265",
      "tree": "ebd1a68de3228513b51faeb811f5ef1ef4eb2e77",
      "parents": [
        "5b819262a8af0cb10728288312f6d9ef150906c8"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Jul 31 15:15:39 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sat Jul 31 15:15:39 2004 +0000"
      },
      "message": "2004-07-31 Christian Hammers \u003cch@lathspell.de\u003e\n\n\t* snmp.texi: updated (rewritten almost)\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": "d26ca6a976421b09ee6c4e5ac699075b6f549584",
      "tree": "447ea71cea6be30ec26194069e7d61acd211ba8a",
      "parents": [
        "074a917aeb16061440d932c1f3ffccd7afc475a1"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Jun 06 15:25:35 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Sun Jun 06 15:25:35 2004 +0000"
      },
      "message": "CVS ignore Linux NFS silly-delete .nfs* files\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": "152f4a80026262c0a87bea408410b5a534f3f80e",
      "tree": "2e04f120d01e092aadcebd7ed7089da3adbdca66",
      "parents": [
        "538621f2f80ced838048fa7402e57face3b224a5"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed May 26 23:31:11 2004 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed May 26 23:31:11 2004 +0000"
      },
      "message": "2004-05-27 Paul Jakma \u003cpaul@dishone.st\u003e\n\n        * Correct RIP port, s/521/520/, reported by xantius@xantius.com\n"
    },
    {
      "commit": "3e31cded7fd9b6a1bac06de2ee2e875a5c40074c",
      "tree": "49a63589ef2dd12a3845aa2f5cc9042d44be7ab3",
      "parents": [
        "4134ceb7f4a5177e90e77668ec1e1d2b8a17ea72"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue May 18 11:58:59 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue May 18 11:58:59 2004 +0000"
      },
      "message": "Router advertisement cleanup. Removed compatibility command because it\u0027s\nvery annoying to have both obsolete \"prefix-advertisement\" and \"prefix\" in\ncompletion. We will break configuration anyway with secondary cleanup, so\njust remember mention it in release notes.\n"
    },
    {
      "commit": "eb3f463aab7f09e6c1041bf779fd5752b038f847",
      "tree": "5abc8eec470ca085e4554fc66941e3ea44bfba0f",
      "parents": [
        "a0a397615cb7da4b23a71cef267064380f78dca4"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 26 13:22:15 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 26 13:22:15 2004 +0000"
      },
      "message": "More supported RFCs added.\n"
    },
    {
      "commit": "6b3fac0aab9ea72c927531df4c20a6e60df650fe",
      "tree": "924ea6b7a86578e3f6ca4abd462e517b2c73c4bb",
      "parents": [
        "9e1be242e41ccfd2191a7d163053b9c24deaf2e0"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Apr 20 04:11:36 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Apr 20 04:11:36 2004 +0000"
      },
      "message": "Fix typo to make it compile.\n"
    },
    {
      "commit": "c266ac78eecae0af8599a4503589fd8d0eb2b402",
      "tree": "5f3480f70009750f736d504f18374d42943213fc",
      "parents": [
        "808c0a7f790370d43edb336ee442d43694469380"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 19 17:31:00 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 19 17:31:00 2004 +0000"
      },
      "message": "****! What else I will discover while documenting this code? Remove useless\nwarnings and update documentation.\n"
    },
    {
      "commit": "808c0a7f790370d43edb336ee442d43694469380",
      "tree": "b13eee5a998969b1416440ee3d7bf1f79b09a8f9",
      "parents": [
        "63869f111ee0899404a238790dda120402b96369"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 19 15:10:20 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 19 15:10:20 2004 +0000"
      },
      "message": "Don\u0027t assume anything. I\u0027m tired ...\n"
    },
    {
      "commit": "63869f111ee0899404a238790dda120402b96369",
      "tree": "85e92635f507a06afa89edfd004fea6188bcdd50",
      "parents": [
        "a5b2b59a7cc4679a31224408746d8bb9096eab6b"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 19 14:43:46 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Apr 19 14:43:46 2004 +0000"
      },
      "message": "Document summarizing and filtering ABR commands. Native speakers, please\nreview and fix my awful english ;).\n"
    },
    {
      "commit": "a5b2b59a7cc4679a31224408746d8bb9096eab6b",
      "tree": "00f300edc040fa422176c96664693a3c76dcde5d",
      "parents": [
        "d355bfa7806c77ec40e789dfb8226778ec7c36f5"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sat Apr 17 10:09:29 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sat Apr 17 10:09:29 2004 +0000"
      },
      "message": "Fix obviously wrong info in documentation.\n"
    },
    {
      "commit": "4991f6ca305a325d1ec7a38eeb2a7cf8cf6d7f2d",
      "tree": "d45f34157f2b7df39427683b4c42bb5739b22939",
      "parents": [
        "128d31d34220192c27c2d1d8eff91e0471c5237c"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Apr 06 11:36:17 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Apr 06 11:36:17 2004 +0000"
      },
      "message": "Vtysh fixes:\n* replace -e with -c\n* don\u0027t save command in history if last line is the same one\n* doc/help fixes\n"
    },
    {
      "commit": "253e9336982599957514ad87610e8cd58822fc7a",
      "tree": "ea1e1fb722471eefef9e4dfd614de714036ac8aa",
      "parents": [
        "e23949c0e79d0e5f9ae662b4c661e838f35681ef"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Mar 11 22:34:01 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Mar 11 22:34:01 2004 +0000"
      },
      "message": "Fix bugreport URLs here as well.\n"
    },
    {
      "commit": "00b0bbcd5ca015a25142cc33ac035e9d75f2417e",
      "tree": "7082da60434a672ec7de9303e842e093a8ba0cc8",
      "parents": [
        "5707ccee87f1ed0917cc3a9d10119d6ba2ffe639"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Mar 04 20:41:36 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Mar 04 20:41:36 2004 +0000"
      },
      "message": "Document VTYSH_PAGER and fix bugreporting address.\n"
    },
    {
      "commit": "2f04e67a80dada65ff4564cd181500068fb59c43",
      "tree": "d4ed9f1f9a3f700378320855d4b11135c7a992e1",
      "parents": [
        "c3aac6ff4f67d2dff5288e55be1853abc61f40e5"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Feb 20 18:53:22 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Feb 20 18:53:22 2004 +0000"
      },
      "message": "Report quagga bugs to quagga bugzilla.\n"
    },
    {
      "commit": "5a514b14c706d671a041862c072af08a2baab98e",
      "tree": "242e68f17ec84a327797274711c5915dfc0d905e",
      "parents": [
        "e3c43e2f8b0600fdd9197f99b93441605e48c284"
      ],
      "author": {
        "name": "jardin",
        "email": "jardin",
        "time": "Tue Dec 23 10:50:21 2003 +0000"
      },
      "committer": {
        "name": "jardin",
        "email": "jardin",
        "time": "Tue Dec 23 10:50:21 2003 +0000"
      },
      "message": "Let\u0027s use 2608/tcp for isisd.\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": "fa1253d0c95416ab0361e6945275ef8194fd7ddd",
      "tree": "c0e9455701831fcc436f3b579eca956e07c6686a",
      "parents": [
        "3e95a0741feb6f8b103577d0019a5db562d8315d"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Sep 24 05:09:26 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Sep 24 05:09:26 2003 +0000"
      },
      "message": "2003-09-24 Paul Jakma \u003cpaul@dishone.st\u003e\n\n        * lib/version.h: moved to version.h.in\n        * lib/version.h.in: New file, from version.h. Change hardcoded\n          package name and version to use the autoconf defined substition\n          variables.\n        * configure.ac: Fix up AC/AM_INIT* to new style. Remove the sed\u0027ing\n          through lib/version.h for VERSION. Add lib/version.h to the\n          AC_OUTPUT list. Update the text output of quagga version at end\n          of configure run to use PACKAGE_VERSION.\n        * doc/.cvsignore: ignore quagga.pdf\n        * doc/.cvsignore: ignore version.h, its now autogenerated.\n"
    },
    {
      "commit": "5282d6ef418b14aeba3d132c71491b36e4a15ff5",
      "tree": "aefa9ac28094c3f0d0dd062766b9705d6c334d1b",
      "parents": [
        "bb6065a50e81f52ecd264de580c820ca49bd9b86"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Aug 13 04:55:13 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Aug 13 04:55:13 2003 +0000"
      },
      "message": "2003-08-13 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* doc/Makefile.am: zebra.texi went to quagga.texi, so the automake\n\tdependency must change too.\n"
    },
    {
      "commit": "7190f4ea215c294abc269b6dfa12f5f114bd2ed6",
      "tree": "288cc608f1ee0e4f959ed3d684eb6edc5e1a0fb7",
      "parents": [
        "bb8ff1e7fe7d25a03b9f81bfd23f10347423e860"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Aug 12 12:40:20 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Aug 12 12:40:20 2003 +0000"
      },
      "message": "2003-08-12 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* doc/: GNU Zebra -\u003e Quagga, in most places. Update Url and list URL\n\t  to quagga.net. zebra.texi -\u003e quagga.texi.\n"
    },
    {
      "commit": "971a4497860b78dc3a133487faca75d513b433c7",
      "tree": "a2ed190b1b41b1f957dc073d5d87dda3f6d6d922",
      "parents": [
        "56e475cba9f9c54dec9296aef816104b1a51002e"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Jun 20 01:18:07 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Jun 20 01:18:07 2003 +0000"
      },
      "message": "2003-06-20 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* *.texi: update the docs a bit. Add some info about\n\t  zebra.dishone.st in the overview. Add link-detect and update\n\t  static routes section in zebra. Add write-config in vtysh. Update\n\t  version handling and add passive-interface default for ripd.\n"
    },
    {
      "commit": "ef4e09961da9f2c50d1535fb4348f12c4d41612f",
      "tree": "9790257d6209f9e153d4888a5032ff16471d1121",
      "parents": [
        "ecfd5b48bf6d2c3716f13046df71a337bbeee316"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Apr 09 06:37:27 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Apr 09 06:37:27 2003 +0000"
      },
      "message": "Add Makefile.in to the remaining .cvsignore\u0027s\nAdd ospfclient to ospfclient/.cvsignore\n"
    },
    {
      "commit": "3a6440d756863b602cfaaf0259b71950e67b2a6e",
      "tree": "e341fb75541ab4bafbd817500add90923617f818",
      "parents": [
        "f6386eebb95769559d2c828b9b9d70c0ffd23b45"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Apr 07 06:02:17 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Apr 07 06:02:17 2003 +0000"
      },
      "message": "Remove auto* files from the repository.\nDevelopers working with the repository should have the appropriate tools.\nOut-of-sync files cause far too many problems with users as well as auto*\nscripts not being half as portable across systems as they ought to be.\nmake-dist exists for a reason.\nTodo: make the CVS snapshot script do make-dist, and use the resulting\ntarball as the snapshot.\n"
    },
    {
      "commit": "6898008484a562ff5bae178a6fb0bd885fe8b1e5",
      "tree": "27797ca6532ca0ef85f538ac8f3070639e579229",
      "parents": [
        "1ef74ef70bdab672458c4d1e4cea24197066c0af"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Mar 25 05:07:42 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Tue Mar 25 05:07:42 2003 +0000"
      },
      "message": "2003-03-25 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* sync to latest zebra CVS\n\t* spec file: updated and added define for ospf-api/client\n\nNB: OSPF-API has been broken by the zebra.org changes, which\nhas added struct ospf * as a new arg to many functions\n"
    },
    {
      "commit": "1bb066bce556b41a9232810accc8823843d38c48",
      "tree": "4fb96083ba30c7d082e7e869b2e8980d387e3a21",
      "parents": [
        "283ae334e83d0801b7de0067fc8a34b8a43f7fd5"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Mar 17 01:18:55 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Mar 17 01:18:55 2003 +0000"
      },
      "message": "Update auto files.\nNo doubt builds will now break for everyone. (works here - autoconf 2.13)\n"
    },
    {
      "commit": "37163d6d0cc49d34a0ea6c0de3184cda93efb419",
      "tree": "96bbe047e20abc715894d42652430757daa62758",
      "parents": [
        "7d7ddde299bddebb48d1e98a9be04008eaa5baad"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Feb 03 18:40:56 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Mon Feb 03 18:40:56 2003 +0000"
      },
      "message": "Merge to zebra.org CVS 20030203 16:30GMT\n"
    },
    {
      "commit": "d4f5031c5c2ca3953d071cfce0a3faa34f9b073d",
      "tree": "ceb1b9fe0a7fcbfbf63a98b21681bf29c50fef39",
      "parents": [
        "ae936aee9967d48a60986624f5b52fe77ad6fd34"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Jan 22 19:26:00 2003 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Jan 22 19:26:00 2003 +0000"
      },
      "message": "Update for ospfd docs for \u0027compatible rfc1583\u0027 and \u0027abr-type\u0027.\nChristian Hammers \u003cch@westend.com\u003e\nzebra 17336 and 17335\n"
    },
    {
      "commit": "8bddafc9d468427b7ff5d0cc80a6cf5827db1045",
      "tree": "0a9312a9283af1f430f864c77723661cfeb95ce9",
      "parents": [
        "0efa4d57e3abef27cccdc571b5fb8c226b7b3b64"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Dec 13 21:57:32 2002 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Fri Dec 13 21:57:32 2002 +0000"
      },
      "message": "\"Masahiko Endo\" \u003c endo @ suri . co . jp \u003e\n- [zebra 15475] - MPLS-TE docs\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"
    }
  ]
}
