debian/quagga.dirs | 4
debian/quagga.files | 14 -
debian/quagga.init.d | 151 --------------------
debian/quagga.logrotate | 17 --
debian/quagga.manpages | 8 -
debian/quagga.postinst | 32 ----
debian/quagga.postrm | 19 --
debian/quagga.preinst | 89 -----------
debian/quagga.prerm | 3
debian/quagga.quagga.pam | 5
.gitignore | 9 -
Makefile.am | 2
bgpd/bgp_advertise.c | 6
bgpd/bgp_aspath.c | 20 +-
bgpd/bgp_aspath.h | 4
bgpd/bgp_attr.c | 43 ++---
bgpd/bgp_attr.h | 2
bgpd/bgp_clist.c | 12 -
bgpd/bgp_community.c | 3
bgpd/bgp_damp.c | 41 ++---
bgpd/bgp_damp.h | 2
bgpd/bgp_debug.c | 2
bgpd/bgp_dump.c | 2
bgpd/bgp_ecommunity.c | 8 -
bgpd/bgp_ecommunity.h | 2
bgpd/bgp_filter.c | 14 -
bgpd/bgp_network.c | 32 +++-
bgpd/bgp_nexthop.c | 6
bgpd/bgp_packet.c | 2
bgpd/bgp_route.c | 22 --
bgpd/bgp_table.c | 9 -
bgpd/bgp_vty.c | 14 -
bgpd/bgp_zebra.c | 2
bgpd/bgpd.c | 40 -----
bgpd/bgpd.h | 54 +++----
configure.ac | 7
debian/README | 5
debian/changelog | 18 ++
debian/control | 8 -
debian/lintian | 4
debian/rules | 9 -
debian/vyatta-quagga.dirs | 4
debian/vyatta-quagga.files | 14 +
debian/vyatta-quagga.init.d | 151 ++++++++++++++++++++
debian/vyatta-quagga.logrotate | 17 ++
debian/vyatta-quagga.manpages | 8 +
debian/vyatta-quagga.postinst | 32 ++++
debian/vyatta-quagga.postrm | 19 ++
debian/vyatta-quagga.preinst | 89 +++++++++++
debian/vyatta-quagga.prerm | 3
debian/vyatta-quagga.quagga.pam | 5
doc/main.texi | 4
doc/zebra.8 | 4
isisd/isis_circuit.c | 2
isisd/isisd.c | 2
lib/command.c | 10 -
lib/distribute.c | 11 -
lib/filter.c | 4
lib/hash.c | 7
lib/hash.h | 6
lib/if_rmap.c | 11 -
lib/keychain.c | 14 -
lib/linklist.c | 12 -
lib/log.c | 4
lib/log.h | 47 ++++--
lib/memory.c | 2
lib/plist.c | 4
lib/routemap.c | 2
lib/smux.c | 2
lib/sockopt.h | 1
lib/sockunion.c | 3
lib/thread.c | 6
lib/vty.h | 7
lib/zassert.h | 14 +
lib/zclient.c | 3
ospf6d/ospf6_interface.c | 2
ospf6d/ospf6_top.c | 5
ospf6d/ospf6_zebra.c | 2
ospf6d/ospf6d.c | 2
ospfd/ospf_api.c | 10 -
ospfd/ospf_apiserver.c | 3
ospfd/ospf_asbr.c | 3
ospfd/ospf_dump.c | 2
ospfd/ospf_interface.c | 13 -
ospfd/ospf_lsa.c | 7
ospfd/ospf_neighbor.c | 3
ospfd/ospf_snmp.c | 6
ospfd/ospf_te.c | 6
ospfd/ospf_vty.c | 11 -
ospfd/ospf_zebra.c | 5
ospfd/ospfd.c | 3
ripd/rip_debug.c | 2
ripd/rip_interface.c | 18 +-
ripd/rip_offset.c | 6
ripd/rip_peer.c | 6
ripd/rip_zebra.c | 4
ripd/ripd.c | 21 --
ripngd/ripng_debug.c | 2
ripngd/ripng_interface.c | 2
ripngd/ripng_peer.c | 6
ripngd/ripng_zebra.c | 2
ripngd/ripngd.c | 5
vtysh/vtysh.c | 32 ++--
vtysh/vtysh_user.c | 5
zebra/connected.c | 22 +-
zebra/connected.h | 4
zebra/interface.c | 3
zebra/kernel_null.c | 6
zebra/kernel_socket.c | 2
zebra/main.c | 12 +
zebra/rib.h | 9 -
zebra/rt.h | 4
zebra/rt_ioctl.c | 4
zebra/rt_netlink.c | 271 ++++++++++++++++++------------------
zebra/rt_socket.c | 4
zebra/rtadv.c | 12 -
zebra/zebra_rib.c | 298 ++++++++++++++++++++--------------------
zebra/zebra_vty.c | 4
zebra/zserv.c | 6
119 files changed, 1012 insertions(+), 1113 deletions(-)
New commits:
commit a763c7ba2a45d0b8d9a50e0e8188c609f74d2af6
Author: Mark O'Brien <[EMAIL PROTECTED]>
Date: Tue Oct 14 17:30:19 2008 -0700
3.1.4
commit d4aad5852a6be45eda78971b3b40350bc5e9ab5b
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Oct 8 16:33:39 2008 +0200
Notify on MTU changes
Bugfix 3732
Notify routing protocols about MTU changes
commit 6926a30b14d1f0c2905925d0e886d5a8ee1689de
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Oct 8 16:31:24 2008 +0200
netlink message signed/unsigned cleanup
Avoid possible problems where netlink message is being formatted
with unsigned 32 bit value, which was being read as int.
commit f6e3b1da96fbe5c901e67d789a1523c986d6678e
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Sep 25 09:18:33 2008 -0700
Building with optimization for size gives better performance
The GCC -Os flag gives better performance for most code (except
scientific) because the memory footprint is smaller and more likely
to fit in cache.
commit f69d8408d73d4ac6fb34bdf36af8f25f09619913
Author: Paul Jakma <[EMAIL PROTECTED]>
Date: Wed Sep 24 14:13:22 2008 -0700
[bgpd] bug #419: partial aspath-limit incorrectly causes session reset
2008-06-01 [EMAIL PROTECTED]
* bgp_attr.c: (bgp_attr_aspathlimit) fix silly bug in flags check
that was causing BGP to drop sessions if it received a
aspath-limit with partial set. Fixes bug #419.
commit 438108db37ecc8166e5172b3328dce1c39f6086d
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Sep 18 17:24:30 2008 -0700
fix ipv6 typo in recursive route update code
commit c2e82029179e99ade627ab1d9649b5bd0b7da302
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Sep 18 16:51:06 2008 -0700
remove incorrect debug message
commit c31e78dd4ac8b86fde9e8f46a40246c49044d5d8
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Sep 18 10:13:48 2008 -0700
Add delete interface cleanout
Quagga needs to fully cleanout state when interface is deleted from
system.
Bugfix: 3962, 3693
commit 17b2df401d1b4de90fd1c7c005abc42fc9de9eb8
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Sep 17 14:14:50 2008 -0700
Set metric in RIB for connected routes
Set metric in RIB to keep OSPF happy, but don't set the
metric in the kernel since the kernel portion of connected route
has metric=0.
Bugfix 3668
commit ceaf189147231cbcb847ba8b22e20b3bee199783
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Sep 17 13:44:27 2008 -0700
Handle device renames correctly
Bugfix 3658
If inactive device is renamed, just do it.
If active device is renamed, update RIB if needed.
commit 7978e4d05ca24e62e282d4318e2332b0277137dd
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Sep 17 13:29:59 2008 -0700
Set proper protocol for routes from command line
Bugzilla 3681 fix.
Routes from 'ip route' default to protocol boot. Need to use this
same value when deleting or udpating.
commit 0eb863dbeeb5db2b01afa7602080ad2c36fcb500
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Sun Aug 24 20:36:51 2008 -0400
Fix bgp ipv4/ipv6 accept handling
When bgp calls getaddrinfo, it gets both ipv6 and ipv4 addresses.
Unless IPV6_ONLY is set on Linux, only the ipv6 bind will succeed,
and the IPV4 connections will come in as mapped connections on the
IPV6 socket.
commit 5849f73c66660784664c07ffdec470c16c6aee4f
Author: rbalocca <[EMAIL PROTECTED]>
Date: Fri Aug 22 11:02:35 2008 -0700
Ignore derived file
commit 591886e7ae3585967f7855ce34c476f40af7c36b
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 18 15:48:07 2008 -0700
Fix up filtering of netlink pid
There are two distinct pid's in netlink message. The one in
the receive address is the pid of the sender (ie kernel),
the other in the netlink message is the originator (ie quagga or ip
command).
commit df1b37b7e0f14e5bcff29c5bae5f5e5b1d1f8e69
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 18 15:23:05 2008 -0700
Revert "Filter messages so that only netlink messages from kernel are
allowed."
This reverts commit e5d63369e1f3fdc1c22ae15fe477de1f97022703.
commit aa990a9f58b5f46da95eb360049577a8833d649e
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 18 14:13:29 2008 -0700
Use XCALLOC
Replace calls to XMALLOC followed by memset with XCALLOC.
commit e5d63369e1f3fdc1c22ae15fe477de1f97022703
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 18 14:12:11 2008 -0700
Filter messages so that only netlink messages from kernel are allowed.
This is a refinement of the socket filter, and also closes a security
hole that would allow non-kernel messages to confuse quagga.
commit a420c65f00c5a3d3ba321746dcb4c7fbbf219230
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 15 21:34:21 2008 -0700
Ignore both names for this package
commit 824b6eb72d630db5886a2fe437944fe390964c09
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 15 21:33:46 2008 -0700
Enable zebra to manage system routes
commit 4535c40dc4dee1822fed7f2a14e92b04f5d48f94
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 15 21:31:29 2008 -0700
Manage system routes with zebra
This adds a new flag to the zebra daemon that causes it to add and
remove system routes (ie connected and kernel routes). This causes
user space (zebra) to do what the kernel was doing in hollwood.
commit 0fbcf52a9adaebc56c0be48856b4aa725b1311b6
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Aug 14 21:09:50 2008 -0700
Update ignore file list
commit b1658bd595d7730d35fe18efc0185d5c73d8b11b
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 16:07:47 2008 -0700
Ignore more files
commit 93765a4d7ae4c9fe1f3039ad6d9275b5d267ca7d
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 16:06:23 2008 -0700
Change package name back to vyatta-quagga
commit 8ae0e1c8b6fafc8e5d0505de80c2a2b87b2d57af
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 13:27:25 2008 -0700
Fix package name in changelog
commit f814477321a8e3985b16a6ce96351e178cdf2d4b
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:07:42 2008 -0700
Revert "Rename vyatta-quagga package to quagga"
This reverts commit b3d1820e48cfd5571ecbc16ed33977141da1e7ad.
Conflicts:
debian/changelog
commit 845bb7ffe146053db0cadf80c94ff7ce44c515e6
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:06:16 2008 -0700
Revert "Ignore derived files that have changed name (vyatta-quagga ==>
quagga)"
This reverts commit 2efaeb45f5d5ef521ce68e09d0342bd0bfb57fcc.
commit ed1c25d58639e5ff8baf4a423d783511eae911d5
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:05:32 2008 -0700
Revert "Take off some vyattaising of the filenames"
This reverts commit 8d84f562de3a080bd21503b24dde293821f1a94e.
commit a2a35f2ddffe81611d6e20a331671eddb26cb9ce
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:05:24 2008 -0700
Revert "More devyattaing"
This reverts commit ca0ea2443b0d11a5c922a1f0e84ed26bda2846f5.
commit 8604e57aceae98daa84ad06b2923823b85c5f9a8
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:05:14 2008 -0700
Revert "More leftovers from vyatta- name change"
This reverts commit 215e7b9080aa89583d1ce458a285e8b3b11e0ddd.
commit 70566e386d397834d935578ac5407fb2f3873366
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:05:03 2008 -0700
Revert "Set paths correctly after the vyatta demangling"
This reverts commit 8839ea209eac30fcc336841ae336cbbaa614a91f.
commit 27ad8ff0bb167ba5c3a850e26d6dc18530e51278
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 12:04:49 2008 -0700
Revert "More cleanup from change back from vyatta-quagga to quagga"
This reverts commit b890cca90fd02cbb71649601a0fb9d4d81346e54.
commit b890cca90fd02cbb71649601a0fb9d4d81346e54
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Tue Aug 12 10:36:07 2008 -0700
More cleanup from change back from vyatta-quagga to quagga
The install scripts need to be fixed as well
commit 8839ea209eac30fcc336841ae336cbbaa614a91f
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 18:20:17 2008 -0700
Set paths correctly after the vyatta demangling
Changes to get rid of vyatta- were putting files in the wrong location.
commit 215e7b9080aa89583d1ce458a285e8b3b11e0ddd
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 17:04:21 2008 -0700
More leftovers from vyatta- name change
More places where daemon expected vyatta in name
commit ca0ea2443b0d11a5c922a1f0e84ed26bda2846f5
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 16:55:01 2008 -0700
More devyattaing
The initialization script needs to look for quagga commands,
not vyatta-quagga commands.
commit 8d84f562de3a080bd21503b24dde293821f1a94e
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 16:48:52 2008 -0700
Take off some vyattaising of the filenames
Since package is called quagga, the filenames should be in quagga
standard locations...
commit a7c450fad3c5ee4c45470521dc2e3a9a12127434
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 16:22:15 2008 -0700
Cleanup meta-queue code
Do some cleanup work on recently added meta-queue code:
* use table rather than switch
* indent with quagga standard indentation
* since meta_queue_new is only used at initialization
allocation failure should be fatal.
commit 31d62783129976be2bdeb2399e927ae2c6ca4b63
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 15:34:54 2008 -0700
Make command nodes static
The cmd_nodes used to configure vty, can mostly be static so
(basic data hiding 101).
commit c4b2cfd119dd6130b37b1cdaaa5f3d47d8aab442
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 11 12:57:27 2008 -0700
Fix format warnings from interface flags
Interface flags or 64 bit, and on 32 bit platform this needs to
converted to long long for printf. Print in hex because it is
easier to figure out the bits then.
commit ebc04ce20a871c99dbb116a4fbada967dd750c43
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 8 15:35:10 2008 -0700
Add compiler directive to mark code paths that log as cold
This causes compiler to naturally favor faster path through code.
Anything that logs a message is not fast path.
commit 9aa7ce77e8aed80057c559d4bf926188c1cf7a32
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 8 15:33:16 2008 -0700
Mark assert() tests as unlikely
This forces compiler to generate the more common code on the
faster path.
commit 952444c56eff77b6c5f5785c0c55879282a23dc5
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 8 15:15:23 2008 -0700
Add gcc printf format checks
commit 2efaeb45f5d5ef521ce68e09d0342bd0bfb57fcc
Author: rbalocca <[EMAIL PROTECTED]>
Date: Fri Aug 8 14:48:20 2008 -0700
Ignore derived files that have changed name (vyatta-quagga ==> quagga)
commit dde75c52dfaeb148cc0486f8f7d6bdaca5ccf286
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Aug 6 15:05:29 2008 -0700
bgp: no need to raise privs when setting up md5
Setting md5 parameters is allowed without privledges.
commit f75d9be73ca4d3f906064cedc3b512d80b270dd4
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Mon Aug 4 12:02:39 2008 -0700
inline bgp flag manipulation
These trivial flag managment functions are easier done inline.
commit c073a25f37fbfdd4dfe56b24b258ae0cd1ff9389
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 18:14:47 2008 -0700
Realign rib code with upstream
May also fix one issue with ipv6 static routes.
commit c81873280d979ea89e810dd74b15554837543394
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 18:12:59 2008 -0700
remove dead code
Mark out dead code with #if 0
commit ada0900bfeaa2afc64c2dbfe13367b2573e21911
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 18:12:11 2008 -0700
Make metaqueue functions static
This stuff is only used in RIB code
commit 6b157a67c296e5f651ba2025acddd2f967b45929
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 18:11:20 2008 -0700
Make log message lookup function use const tables
Message tables should be unaltered.
commit e5f772b7904a45774263fdf473656eaf0ddc7a4e
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 17:47:21 2008 -0700
md5 support now integrated
No longer a configuration option in upstream version
commit 84c23dc4d3c14841dc516e47a0b97527f1d00a30
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 17:38:40 2008 -0700
Add prototype for sockopt_ipv4_tos
commit ef26b6ae62906cdac82ad0c6276761f88e8bb6a0
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 17:31:23 2008 -0700
bgp_config_write_damp should return void
Return value is always the same and never checked.
commit 174c3c493609be113070c4ad0ebff384490c74a5
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Fri Aug 1 11:54:02 2008 -0700
Add back in TOS support
TOS support got dropped in the merge.
commit c9a2aaf516ece95878e039c05bb333bac52a3cd8
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Jul 31 16:17:42 2008 -0700
Make hash compare functions take const args
The hash compare function should not be modifiying its args
commit de451b80ce76bd339c85a39cd815d720bf562003
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Jul 31 15:32:55 2008 -0700
Watchlink leftovers
Remove leftover watchlink config stuff
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=a763c7ba2a45d0b8d9a50e0e8188c609f74d2af6
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=d4aad5852a6be45eda78971b3b40350bc5e9ab5b
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=6926a30b14d1f0c2905925d0e886d5a8ee1689de
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=f6e3b1da96fbe5c901e67d789a1523c986d6678e
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=f69d8408d73d4ac6fb34bdf36af8f25f09619913
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=438108db37ecc8166e5172b3328dce1c39f6086d
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=c2e82029179e99ade627ab1d9649b5bd0b7da302
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=c31e78dd4ac8b86fde9e8f46a40246c49044d5d8
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=17b2df401d1b4de90fd1c7c005abc42fc9de9eb8
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=ceaf189147231cbcb847ba8b22e20b3bee199783
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=7978e4d05ca24e62e282d4318e2332b0277137dd
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=0eb863dbeeb5db2b01afa7602080ad2c36fcb500
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=5849f73c66660784664c07ffdec470c16c6aee4f
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=591886e7ae3585967f7855ce34c476f40af7c36b
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=df1b37b7e0f14e5bcff29c5bae5f5e5b1d1f8e69
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=aa990a9f58b5f46da95eb360049577a8833d649e
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=e5d63369e1f3fdc1c22ae15fe477de1f97022703
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=a420c65f00c5a3d3ba321746dcb4c7fbbf219230
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=824b6eb72d630db5886a2fe437944fe390964c09
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=4535c40dc4dee1822fed7f2a14e92b04f5d48f94
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=0fbcf52a9adaebc56c0be48856b4aa725b1311b6
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=b1658bd595d7730d35fe18efc0185d5c73d8b11b
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=93765a4d7ae4c9fe1f3039ad6d9275b5d267ca7d
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=8ae0e1c8b6fafc8e5d0505de80c2a2b87b2d57af
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=f814477321a8e3985b16a6ce96351e178cdf2d4b
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=845bb7ffe146053db0cadf80c94ff7ce44c515e6
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=ed1c25d58639e5ff8baf4a423d783511eae911d5
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=a2a35f2ddffe81611d6e20a331671eddb26cb9ce
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=8604e57aceae98daa84ad06b2923823b85c5f9a8
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=70566e386d397834d935578ac5407fb2f3873366
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=27ad8ff0bb167ba5c3a850e26d6dc18530e51278
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=b890cca90fd02cbb71649601a0fb9d4d81346e54
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=8839ea209eac30fcc336841ae336cbbaa614a91f
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=215e7b9080aa89583d1ce458a285e8b3b11e0ddd
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=ca0ea2443b0d11a5c922a1f0e84ed26bda2846f5
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=8d84f562de3a080bd21503b24dde293821f1a94e
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=a7c450fad3c5ee4c45470521dc2e3a9a12127434
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=31d62783129976be2bdeb2399e927ae2c6ca4b63
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=c4b2cfd119dd6130b37b1cdaaa5f3d47d8aab442
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=ebc04ce20a871c99dbb116a4fbada967dd750c43
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=9aa7ce77e8aed80057c559d4bf926188c1cf7a32
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=952444c56eff77b6c5f5785c0c55879282a23dc5
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=2efaeb45f5d5ef521ce68e09d0342bd0bfb57fcc
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=dde75c52dfaeb148cc0486f8f7d6bdaca5ccf286
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=f75d9be73ca4d3f906064cedc3b512d80b270dd4
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=c073a25f37fbfdd4dfe56b24b258ae0cd1ff9389
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=c81873280d979ea89e810dd74b15554837543394
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=ada0900bfeaa2afc64c2dbfe13367b2573e21911
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=6b157a67c296e5f651ba2025acddd2f967b45929
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=e5f772b7904a45774263fdf473656eaf0ddc7a4e
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=84c23dc4d3c14841dc516e47a0b97527f1d00a30
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=ef26b6ae62906cdac82ad0c6276761f88e8bb6a0
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=174c3c493609be113070c4ad0ebff384490c74a5
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=c9a2aaf516ece95878e039c05bb333bac52a3cd8
http://suva.vyatta.com/git/?p=vyatta-quagga.git;a=commitdiff;h=de451b80ce76bd339c85a39cd815d720bf562003
_______________________________________________
svn mailing list
[email protected]
http://mailman.vyatta.com/mailman/listinfo/svn