summaryrefslogtreecommitdiff
path: root/misc
AgeCommit message (Collapse)Author
2017-12-07Merge commit '98bb80a243b58c43453e9be69d19d0350286549c' into int-newOndrej Zajicek (work)
2017-09-04Gitlab CI supportMichal 'vorner' Vaner
Add configuration and docker definitions for tests and builds in Gitlab CI platform. Some of them currently fail, which is a known problem.
2016-12-21NEWS and version updatev1.6.3Ondrej Zajicek (work)
2016-12-07NEWS and version updateOndrej Zajicek (work)
2016-09-29NEWS and version updatev1.6.2Ondrej Zajicek (work)
2016-09-22NEWS and version updatev1.6.1Ondrej Zajicek (work)
2016-04-29NEWS and version updateOndrej Zajicek (work)
2015-06-08unsigned [int] -> uintPavel TvrdĂ­k
2015-04-20NEWS and version updatev1.5.0Ondrej Zajicek
2014-10-05NEWS and version update.v1.4.5Ondrej Zajicek
2014-04-14NEWS and version update.v1.4.3Ondrej Zajicek
2014-04-02NEWS and version update.v1.4.2Ondrej Zajicek
2014-03-31NEWS and version update.v1.4.1Ondrej Zajicek
2014-02-05Fedora init script improvement suggested by alex@alex.org.ukOndrej Filip
2014-02-05Minor changes in Fedora init script.Ondrej Filip
2013-11-25NEWS and version update.Ondrej Zajicek
2013-11-23NEWS and version update.Ondrej Zajicek
2013-07-27NEWS and version update.Ondrej Zajicek
2013-04-29NEWS and version update.v1.3.10Ondrej Zajicek
2012-11-16NEWS and version update.Ondrej Zajicek
2012-08-07NEWS and version update.Ondrej Zajicek
2012-03-22NEWS and version update.Ondrej Zajicek
2012-01-20NEWS and version update.v1.3.6Ondrej Zajicek
2011-10-10NEWS and version update.v1.3.4Ondrej Zajicek
2011-09-04NEWS and version update.Ondrej Zajicek
2011-07-08NEWS and version update.v1.3.2Ondrej Zajicek
2011-05-02NEWS and version update.v1.3.1Ondrej Zajicek
2011-03-30NEWS and version update.Ondrej Zajicek
(and minor changes in documentation)
2010-05-31NEWS and version update.v1.2.3Ondrej Zajicek
2010-04-09NEWS and version update.v1.2.2Ondrej Zajicek
2010-02-10NEWS and version update.Ondrej Zajicek
2010-01-06NEWS, version and documentation update.Ondrej Zajicek
2009-12-19NEWS and version update.Ondrej Zajicek
2009-11-19New version.Ondrej Zajicek
2009-11-02Version 1.1.5Ondrej 'Feela' Filip
2009-10-28New version.Ondrej Zajicek
2009-09-30New version.Ondrej Zajicek
2009-08-12NEWS and version update.Ondrej Zajicek
2009-06-25NEWS and version update.Ondrej Zajicek
2009-05-22Update versions.Ondrej Zajicek
2004-06-07Build and run both IPv4 and IPv6.Ondrej Filip
2004-06-06RPM is now able to build IPv4 and IPv6 bird.Ondrej Filip
2001-06-09Yes, 1.0.5 released.Ondrej Filip
2000-09-09Minor rpm changes to make RedHat happy.Ondrej Filip
2000-09-03Serious bug in ext lsa origination found. Going for 1.0.4.Ondrej Filip
2000-09-03Version 1.0.3.Ondrej Filip
2000-08-25Minor bug. It does not work on non RH systems. Thanx toOndrej Filip
Craig Bourne <cbourne@cbourne.com>
2000-08-24Added files for RPM building.Ondrej Filip
1998-12-19Variance estimation fixed.Martin Mares
1998-12-19Added several tools for fib hashing function analysis. It turned outMartin Mares
we can use very simple function which is monotonic with respect to re-hashing: n ^= n >> 16; n ^= n << 10; h = (n >> (16 - o)) & ((1 << o) - 1); where o is table order. Statistical analysis for both backbone routing table and local OSPF routing tables gives values near theoretical optimum for uniform distribution (see ips.c for formulae). The trick is very simple: We always calculate a 16-bit hash value n and use o most significant bits (this gives us monotonity wrt. rehashing if we sort the chains by the value of n). The first shift/xor pair reduces the IP address to a 16-bit one, the second pair makes higher bits of the 16-bit value uniformly distributed even for tables containing lots of long prefixes (typical interior routing case with 24-bit or even longer prefixes).