)]}'
{
  "log": [
    {
      "commit": "4f593574c41deb598cbbefde5c6d938799e81d5a",
      "tree": "755b7fb742265b2dc4fe086e059f1ac6b060e6f9",
      "parents": [
        "29a1401706a762541b366c7844507efe2bc1345d"
      ],
      "author": {
        "name": "Olivier Dugeon",
        "email": "olivier.dugeon@orange.com",
        "time": "Tue Apr 19 19:03:05 2016 +0200"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@hpe.com",
        "time": "Tue Sep 13 10:36:39 2016 +0100"
      },
      "message": "isisd: Add support of Traffic Engineering\n\nThese patches is an implementation of RFC5305 that enable the\nsupport of Traffic Engineering in IS-IS\n\n* isisd/Makefile.am: Add new files isis_te.c and isis_te.h\n\n* isisd/isis_circuit.[c,h]: Add new mpls_te_circuit structure to\n  isis_circuit structure to handle new Traffic Engineering TLVs\n* isisd/isis_lsp.c: Update LSP handler to mux/demux Traffic Engineering TLVs\n* isisd/isis_main.c: Add initialisation of ISIS TE\n* isisd/isis_pdu.c: Update function process_p2p_hello() to retrieve remote\n  IP address to populate Traffic Engineering TLV.\n* isisd/isis_te.[c,]: Implementation of RFC5305\n* isisd/isis_tlv.[c,h]: Update TLV definition and function to handle\n  Traffic Engineering ones\n* isisd/isis_zebra.c: Add new function isis_zebra_link_params() to retrieve\n  the link parameters of interfaces from ZBus to populate the Traffic\n  Engineering TLVs\n* isisd/isisd.[c,h]: Add Traffic Engineering support with new debug command\n\nSigned-off-by: Olivier Dugeon \u003colivier.dugeon@orange.com\u003e\n"
    },
    {
      "commit": "acf9865f7fcec6a8d47df6ed7946a5e8ca398918",
      "tree": "fac7d9ce2d2b6d984bde675641556e5063e8f655",
      "parents": [
        "9dfcca6122c9f4f3642241ff50029d7669af3999"
      ],
      "author": {
        "name": "Christian Franke",
        "email": "chris@opensourcerouting.org",
        "time": "Thu Nov 12 14:24:22 2015 +0100"
      },
      "committer": {
        "name": "Donald Sharp",
        "email": "sharpd@cumulusnetworks.com",
        "time": "Tue Dec 08 14:12:50 2015 -0500"
      },
      "message": "isisd: add support to import routes from other protocols\n\nSigned-off-by: Christian Franke \u003cchris@opensourcerouting.org\u003e\n"
    },
    {
      "commit": "f50ee93d12f8213a048a04fcf7d73e12662288e5",
      "tree": "af40761ee94a9bfc1054d59349929066492ee8ab",
      "parents": [
        "6db3ef65c7683069609b5ceb29bdaab49ca09f48"
      ],
      "author": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Wed Mar 04 07:13:38 2015 +0100"
      },
      "committer": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Tue Apr 21 10:18:11 2015 +0200"
      },
      "message": "isisd: assorted fixes (unused variables, static)\n\nThis just mops up a few warnings in isisd.\n\nSigned-off-by: David Lamparter \u003cequinox@opensourcerouting.org\u003e\n"
    },
    {
      "commit": "fd6f39a514093973bb0fb39484a0ed9615534c89",
      "tree": "a5365a15610b6d02ad8e761013b65e26637c1700",
      "parents": [
        "404fd2974fb53340be6d570b86f2f6f4c0a100c6"
      ],
      "author": {
        "name": "Lu Feng",
        "email": "lu.feng@6wind.com",
        "time": "Wed Feb 19 09:05:05 2014 +0000"
      },
      "committer": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Tue Jun 03 15:48:14 2014 +0200"
      },
      "message": "isisd: ignore the unrecognized TLVs\n\nWhen processing LSPDUs, the unrecognized TLVs/sub-TLVs should be\nsilently ignored.\n\nIn parse_tlvs(), ISIS_WARNING is returned once an unrecognized TLV\nexists. It breaks the processing in lsp_authentication_check() and\nlsp_update_data(). So remove it.\n\nSigned-off-by: Feng Lu \u003clu.feng@6wind.com\u003e\nSigned-off-by: David Lamparter \u003cequinox@opensourcerouting.org\u003e\n"
    },
    {
      "commit": "e8aca32f312cbef1cb0b0dd9e87b7e59dc9fa251",
      "tree": "f1dd65169e4cbc6bb7da2d76466b049703587123",
      "parents": [
        "318c8040abc1b8a737c941382e8aca82e546da09"
      ],
      "author": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Tue Nov 27 01:10:30 2012 +0000"
      },
      "committer": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Wed Dec 12 15:38:08 2012 +0100"
      },
      "message": "isisd: address Coverity warnings\n\nthis fixes a bunch of issues found by Coverity SCAN and flagged as\n\"high\" impact -- although, they\u0027re all rather minute issues.\n\n* isisd/isis_adjacency.c: one superfluous check, one possible NULL deref\n* isisd/isis_circuit.c: two prefix memory leaks\n* isisd/isis_csm.c: one missing break\n* isisd/isis_lsp.c: one possible NULL deref\n* isisd/isis_pfpacket.c: one error-case fd leak\n* isisd/isis_route.c: one isis_route_info memory leak\n* isisd/isis_routemap.c: one... fnord\n* isisd/isis_tlv.c: one infinite loop\n\nReported-by: Coverity SCAN\nSigned-off-by: David Lamparter \u003cequinox@opensourcerouting.org\u003e\n"
    },
    {
      "commit": "91d799e8cdd24ad3c195ed9d11882aacc91cc2ea",
      "tree": "935c32631fdb828d4ef624d081953f212a792912",
      "parents": [
        "0be793e674c8b076f0e8bf327257f15803480f49"
      ],
      "author": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Tue Nov 27 01:10:24 2012 +0000"
      },
      "committer": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Wed Dec 12 15:38:07 2012 +0100"
      },
      "message": "isisd: do not add \u003e63 IP addresses to hello\n\nRFC1195 s4.2 \"Multiple IP Addresses per Interface\" explicitly forbids us\nfrom adding multiple tuples of IP addresses, putting a hard cutoff at 63\nIP addresses.\n\n* isisd/isis_tlv.c: cut off (and return success) at 63 addrs.\n\nSigned-off-by: David Lamparter \u003cequinox@opensourcerouting.org\u003e\nTested-by: Martin Winter \u003cmwinter@opensourcerouting.org\u003e\n"
    },
    {
      "commit": "f02a09925db53d3e1d29b1917ebbcaa8edf72c12",
      "tree": "8c8fefac30fa372f4e04c6a9f8ceed6569f55570",
      "parents": [
        "948b6bef7f9cf841a98fe3ea40419696500c8c4c"
      ],
      "author": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Tue May 08 13:15:45 2012 +0200"
      },
      "committer": {
        "name": "David Lamparter",
        "email": "equinox@opensourcerouting.org",
        "time": "Thu Oct 25 10:15:59 2012 -0700"
      },
      "message": "isisd: don\u0027t process invalid prefixes from TLVs\n\nit\u0027s possible to feed invalid prefixes (1.2.3.4/40 or dead::beef/200) on\nIS-IS.  if this is not checked, it will later cause an assert in\nprocessing.  let\u0027s simply abort processing the TLV if the prefix is\ninvalid.\n\n  * isisd/isis_tlv.c: check prefix lengths for validity\n\nSigned-off-by: David Lamparter \u003cequinox@opensourcerouting.org\u003e\n"
    },
    {
      "commit": "3f045a08812525505e165deea99a79447b44506b",
      "tree": "a5c944b0584e0e5a14908a2ac9476637e7c1d7e6",
      "parents": [
        "6902c69aa30a73ecd70ef8941518b541ca02b878"
      ],
      "author": {
        "name": "Josh Bailey",
        "email": "joshb@google.com",
        "time": "Sat Mar 24 08:35:20 2012 -0700"
      },
      "committer": {
        "name": "Avneesh Sachdev",
        "email": "avneesh@opensourcerouting.org",
        "time": "Sat Apr 07 13:54:37 2012 -0700"
      },
      "message": "isisd: add Google\u0027s changes to IS-IS\n"
    },
    {
      "commit": "41b36e9013111a6da812ca000e3b978282bd27a9",
      "tree": "11805d66de677613be7fe5e31626cfbbbbec78a6",
      "parents": [
        "3c0755dc9772deccff2ba6e9dc0511a9af2b9d1b"
      ],
      "author": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Fri Dec 08 01:09:50 2006 +0000"
      },
      "committer": {
        "name": "Paul Jakma",
        "email": "paul.jakma@sun.com",
        "time": "Fri Dec 08 01:09:50 2006 +0000"
      },
      "message": "[isisd] Fix compiler warnings and allow v4-only compilation\n\n2006-12-08 Hannes Gredler \u003channes@gredler.at\u003e\n\n\t* isis_adjacency.c: (isis_new_adj) Allow NULL snpa argument.\n\t* isis_pdu.c: (various) Update calls to isis_new_adj() to pass\n\t  NULL and use default.\n\t* (general) Add forward declarations where required.\n\t  Fix up const char *\u0027s.\n\t  Allow V4-only compilation.\n"
    },
    {
      "commit": "3fdb2dd9dd8b4ab3517896092dd1b677d191adf9",
      "tree": "2f2bdff0a3797517100d0f1319cd3e46bb00f53f",
      "parents": [
        "d3d7474ba98f01e6d9994ff48c0b3a4331a8ef2a"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed Sep 28 18:45:54 2005 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed Sep 28 18:45:54 2005 +0000"
      },
      "message": "\t* *.c: Massive cleanup of lists loops. Stop abusing ALL_LIST_ELEMENTS.\n\t  Replace XMALLOC + memset with XCALLOC. Fix some indentation issues.\n\t  The only really significant change is simplified isis_delete_adj\n\t  function in isis_adjacency.c.\n"
    },
    {
      "commit": "81ad8f6a1040eaf9d4230bd63b71d85397660653",
      "tree": "93ccfab5fe8ca9d9e79b65aed0e359ab21f0a1c1",
      "parents": [
        "aa4376ec0c37b9b2d484e9503ad7b8e1a010afd2"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Sep 26 17:58:24 2005 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Sep 26 17:58:24 2005 +0000"
      },
      "message": "\t* isis_tlv.[ch]: New function tlv_add_in_addr() to put just one IPv4\n\t  address into TLV. Used for IPv4 address TLV (in case of LSP) and TE\n\t  router ID TLV.\n\t* isis_lsp.c: Use tlv_add_in_addr() and include router ID in LSP.\n"
    },
    {
      "commit": "ea3be4c12223b00a69652a8be330961489212447",
      "tree": "900f18472ddbbd9f2c418771a5d8525d0a8b24b0",
      "parents": [
        "f21fb27298fd49ce695fd403e02bcbd5e9f0cd27"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Sep 26 17:11:12 2005 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Mon Sep 26 17:11:12 2005 +0000"
      },
      "message": "\t* isis_tlv.[ch]: Two new functions - tlv_add_te_is_neighs() and\n\t  tlv_add_te_ipv4_reachs() to handle TLV\u0027s with new metric. None of\n\t  them handle sub TLVs though for now.\n"
    },
    {
      "commit": "aac372f4f5b617a579dafeab31fb486a5d69d65d",
      "tree": "9aac3362db19f195238b8508761e82f2d6b8a370",
      "parents": [
        "deba35508e28a3861bb182218bb51af6769b2581"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Sep 01 17:52:33 2005 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Sep 01 17:52:33 2005 +0000"
      },
      "message": "\t* isis_adjacency.c, isis_lsp.c, isisd.c: Replace XMALLOC \u0026\u0026 memset\n\t  with XCALLOC.\n\t* isis_lsp.c (lsp_build_pseudo): Fix adding ES neighbour.\n\t* isis_tlv.c: More compact free_tlvs() function.\n\t* isis_lsp.c (lsp_build_nonpseudo) : Try to fix one more regression\n\t  introduced by stream cleanup. Seek enp to the right place before\n\t  starting to fill stream with TLVs.\n"
    },
    {
      "commit": "15935e9ae1619288f0f78fcc0dac15c1c25d41c6",
      "tree": "5a12ca48a8d3619f634134744abb0cf6e5f9a589",
      "parents": [
        "0dab930314e215a627f848ffa824ed995eb2e13c"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Tue May 03 09:27:23 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Tue May 03 09:27:23 2005 +0000"
      },
      "message": "2005-05-03 Paul Jakma \u003cpaul@dishone.st\u003e\n\n\t* (general) More cleaning up of stream abuse, isisd should be\n\t  back to previous functionality. Replace various XMALLOC+memset\u0027s\n\t  with XCALLOC\n\t* isis_tlv.c: (tlv_add_padding) use stream_put to clear the stream\n\t  rather than forward endp, as isisd reuses streams.\n\t* isis_pdu.c: (process_lsp) cleanup direct reference to stream endp\n\t  (send_lsp) manual copy of a stream cleaned up to use stream_copy.\n\t* isis_network.c: (isis_recv_pdu_bcast) replace direct memcpy with\n\t  stream_write\n\t  (isis_recv_pdu_p2p) replace recvfrom directly into stream with\n\t  stream_recvfrom. Remove dangerous and now unneeded manual update\n\t  of endp.\n\t  (isis_recv_pdu_bcast / non-GNU_LINUX) Replace direct memcpy with\n\t  stream_write.\n\t  (isis_recv_pdu_p2p) replace read direct into stream with\n\t  stream_read_try, and hence remove the manual update of endp.\n\t* isis_lsp.c: (lsp_update_data) manual stream dup replaced with\n\t  stream_dup.\n\t  (lsppdu_realloc) mempcy into stream data replaced with stream_put.\n\t  (lsp_build_nonpseudo) remove mysterious stream_forward_endp\u0027s -\n\t  which were originally stream_set_putp - shouldn\u0027t be needed\n\t  now that all the manual fiddling of private stream data has been\n\t  corrected.\n\t  (build_topology_lsp_data) remove unneeded twiddling of endp,\n\t  appears to be due to lsppdu_realloc(), but it appears to sort of\n\t  do the right thing wrt streams.\n"
    },
    {
      "commit": "1eb8ef2584833f18fb674e127d59cb5a7f771482",
      "tree": "f5b09d4781de9a9b08839fefb6530e64d2d2ec31",
      "parents": [
        "5920990fecba7e2430af3cfaa8bcbaed40d0ba1a"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Apr 07 07:30:20 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Thu Apr 07 07:30:20 2005 +0000"
      },
      "message": "2005-04-07 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* (global): Fix up list loops to match changes in lib/linklist,\n\t  and some basic auditing of usage.\n\t* configure.ac: define QUAGGA_NO_DEPRECATED_INTERFACES\n\t* HACKING: Add notes about deprecating interfaces and commands.\n\t* lib/linklist.h: Add usage comments.\n\t  Rename getdata macro to listgetdata.\n\t  Rename nextnode to listnextnode and fix its odd behaviour to be\n\t  less dangerous.\n\t  Make listgetdata macro assert node is not null, NULL list entries\n          should be bug condition.\n          ALL_LIST_ELEMENTS, new macro, forward-referencing macro for use\n          with for loop, Suggested by Jim Carlson of Sun.\n          Add ALL_LIST_ELEMENTS_RO for cases which obviously do not need the\n          \"safety\" of previous macro.\n\t  LISTNODE_ADD and DELETE macros renamed to ATTACH, DETACH, to\n\t  distinguish from the similarly named functions, and reflect their\n\t  effect better.\n\t  Add a QUAGGA_NO_DEPRECATED_INTERFACES define guarded section\n\t  with the old defines which were modified above,\n\t  for backwards compatibility - guarded to prevent Quagga using it..\n\t* lib/linklist.c: fix up for linklist.h changes.\n\t* ospf6d/ospf6_abr.c: (ospf6_abr_examin_brouter) change to a single\n\t  scan of the area list, rather than scanning all areas first for\n\t  INTER_ROUTER and then again for INTER_NETWORK. According to\n\t  16.2, the scan should be area specific anyway, and further\n\t  ospf6d does not seem to implement 16.3 anyway.\n"
    },
    {
      "commit": "9985f83ce7102f64b15f744b60320f8d14a8a5ff",
      "tree": "344629bdc2b4a7d53b8d7ca1705c9be2ca282d18",
      "parents": [
        "083ee9d9cdbf72a452b9af96e62d0625ea712cd9"
      ],
      "author": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Feb 09 15:51:56 2005 +0000"
      },
      "committer": {
        "name": "paul",
        "email": "paul",
        "time": "Wed Feb 09 15:51:56 2005 +0000"
      },
      "message": "2005-02-09 Paul Jakma \u003cpaul.jakma@sun.com\u003e\n\n\t* (global) Update code to match stream.h changes.\n\t  stream_get_putp effectively replaced with stream_get_endp.\n\t  stream_forward renamed to stream_forward_getp.\n\t  stream_forward_endp introduced to replace some previous\n\t  setting/manual twiddling of putp by daemons.\n\t* lib/stream.h: Remove putp. Update reference to putp with endp.\n\t  Add stream_forward_endp, which daemons were doing manually.\n\t  Rename stream_forward to stream_forward_getp.\n\t  lib/stream.c: Remove/update references to putp.\n\t  introduce stream_forward_endp.\n"
    },
    {
      "commit": "92365889d1f856f323af452bad76f54c15ccdf45",
      "tree": "b2f01cd133b1f185d5d3e3c7f088310ff9aff621",
      "parents": [
        "6f2c27af2189794187e4c30ee70fcb9cc6cb1a3b"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Jan 18 13:53:33 2005 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Jan 18 13:53:33 2005 +0000"
      },
      "message": "\t* *.c: Changed many functions to static. Some commented out\n\t  functions and some tiny related fixes. No functional changes.\n"
    },
    {
      "commit": "529d65b3db6a2a79cbdf9ca3a1aa915ce5776286",
      "tree": "bc51f1350daf8c8f47cd87478f416ba812cfcff9",
      "parents": [
        "2b70200c5797ca60acf2011fe62f33fa161be54b"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Dec 24 00:14:50 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Dec 24 00:14:50 2004 +0000"
      },
      "message": "zlog_* cleanup. Level of debug messages to LOG_DEBUG.\n"
    },
    {
      "commit": "1cd80845dc5262ff7d3d38deb1921f0b8390f4df",
      "tree": "fc41aebc4470a8467663ccdc6dcc4b91edb75769",
      "parents": [
        "54ade99658ea95bf9207b5547fe6a7b97e64c97a"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Oct 07 20:07:40 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Thu Oct 07 20:07:40 2004 +0000"
      },
      "message": "No warnings here any more.\n"
    },
    {
      "commit": "f7c43dcbbc44e2098728f9849d152d9b6df97a5d",
      "tree": "b0a244f23dc7f1d9414d7a92316f7f83e3103c5b",
      "parents": [
        "1af8193311192ec1bd2a4d2769e0e9b90bc1609f"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sun Sep 26 16:24:14 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Sun Sep 26 16:24:14 2004 +0000"
      },
      "message": "Compiler warnings fixes.\n"
    },
    {
      "commit": "53c997c90d7e20313bfb07d15d83b782d7a6530e",
      "tree": "6f3299d7bd9a8d3be6914cc7a34acfc2ea2e9071",
      "parents": [
        "bbc9ce2aa3985f3df242d2be49ebcc2bc6dd7f3a"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed Sep 15 16:21:59 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed Sep 15 16:21:59 2004 +0000"
      },
      "message": "Second part of fixes from Laurent Rabret.\n"
    },
    {
      "commit": "f891f4438d65e93d5a8224b1b579c9c089c91c27",
      "tree": "3d88a45a47f84fc81ca1e5cbb074df395fd44329",
      "parents": [
        "64a7afd6de67eebda09a6766aa27dbd722539363"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Sep 14 13:54:30 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Sep 14 13:54:30 2004 +0000"
      },
      "message": "Isisd is now able to remove addresses from circuit and trigger LSP updates\nif it\u0027s done. Some random fixes as well and update to sample configuration.\n"
    },
    {
      "commit": "f390d2c7839c04100e4de8246215ce10ea96b653",
      "tree": "9910d250bfb6605d44e7104ef786ba0c84ddb01a",
      "parents": [
        "f3f27f60fdfc81fce2944ee89087417b04935663"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Sep 10 20:48:21 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Fri Sep 10 20:48:21 2004 +0000"
      },
      "message": "Indentation only. No any functional changes.\n"
    },
    {
      "commit": "00995cfcc9cb30afabb3242837753ab1eb7fdb85",
      "tree": "fbfebfd74d22b29eb9b7bc279a4d6fd2beec4def",
      "parents": [
        "37da8c011408560eeaa74b2439192d36e16c19a4"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed May 19 13:43:50 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed May 19 13:43:50 2004 +0000"
      },
      "message": "Commit 100% working part of patch from Laurent Rabret ([quagga-dev 830]).\nAlso tiny temporary fix from me to spf thread crash. Will look at it later.\n"
    },
    {
      "commit": "37da8c011408560eeaa74b2439192d36e16c19a4",
      "tree": "38c7a0f93ec030bbb1cf4067713c69257ddbc662",
      "parents": [
        "3b4cd3a9e89a5aace04a6a756bd0d23b7108fd83"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed May 19 11:38:40 2004 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Wed May 19 11:38:40 2004 +0000"
      },
      "message": "Make it compile in NetBSD and OpenBSD.\n"
    },
    {
      "commit": "2097cd8a7a1322b2853f1b9cbbe7f39c436f553e",
      "tree": "ab849230440ac6429f6d2caea41d36cb893f0c8d",
      "parents": [
        "5a514b14c706d671a041862c072af08a2baab98e"
      ],
      "author": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Dec 23 11:51:08 2003 +0000"
      },
      "committer": {
        "name": "hasso",
        "email": "hasso",
        "time": "Tue Dec 23 11:51:08 2003 +0000"
      },
      "message": "Some fixes to isisd done by me and Cougar in the spring of 2003. See\nchangelog for details.\n"
    },
    {
      "commit": "eb5d44eb8dcf25a1b328e57d1eabb1f89e3bc59b",
      "tree": "2973e8563fcbd4a8cf901d211ff4f8de00c36381",
      "parents": [
        "3dbf99698a3be2e920871c3127ea089e061a127c"
      ],
      "author": {
        "name": "jardin",
        "email": "jardin",
        "time": "Tue Dec 23 08:09:43 2003 +0000"
      },
      "committer": {
        "name": "jardin",
        "email": "jardin",
        "time": "Tue Dec 23 08:09:43 2003 +0000"
      },
      "message": "Initial revision\n"
    }
  ]
}
