index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
net
/
radix_mpath.c
Age
Commit message (
Expand
)
Author
2015-11-06
Rename rt_mpath_next() into rtable_mpath_next() and provide an
Martin Pieuchot
2015-10-08
Use the radix API directly and get rid of the function pointers. There
Martin Pieuchot
2015-09-28
Factors ou the route hashing code to implement Equal-Cost Multi-Path
Martin Pieuchot
2015-09-01
Replace sockaddr casts with the proper satosin(), ... calls.
Alexander Bluhm
2015-07-18
Abstract the routing table internals behind an rtable_* API.
Martin Pieuchot
2015-07-16
Fix rn_match and there for the expoerted lookup functions in radix.c
Claudio Jeker
2015-03-04
Make sure that rn_mpath_adj_mpflag() is called with the correct pointer
Claudio Jeker
2015-02-06
Change rt_mpath_conflict() to not rely on an initialized rtentry when
Martin Pieuchot
2014-12-19
unifdef INET in net code as a precursor to removing the pretend option.
Ted Unangst
2014-11-18
move arc4random prototype to systm.h. more appropriate for most code
Ted Unangst
2014-11-01
Rename rtalloc1() into rtalloc(9) and convert its flags to only enable
Martin Pieuchot
2014-09-27
Kill rtalloc() and update rtalloc1() and rtalloc_mpath() to no longer
Martin Pieuchot
2014-05-27
Big refactoring of the radix code (mainly rn_addroute but also part
Claudio Jeker
2014-01-22
Kill the RN_DEBUG code it is broken since rev 1.1 and not worth fixing.
Claudio Jeker
2013-10-20
Rename rn_mpath_count() to rn_mpath_active_count() since it will only
Claudio Jeker
2013-10-20
In rt_mpath_conflict() there is no need to check the priority in the loop
Claudio Jeker
2013-04-10
Remove various external variable declaration from sources files and
Martin Pieuchot
2010-05-07
Start cleaning up the mess called rtalloc*. Kill rtalloc2, make rtalloc1
Claudio Jeker
2009-03-02
Make sure rt_gateway is not NULL in rt_mpath_matchgate(). It is possible to
Claudio Jeker
2009-01-29
Fix a crash found by bluhm@ in rn_mpath_reprio(). The rn_mklist handling was
Claudio Jeker
2009-01-06
Change the way way rn_mklists work (especially the RNF_NORMAL ones).
Claudio Jeker
2008-12-29
Use rn_mpath_next() in rtalloc_mpath() to figure out if the next route
Claudio Jeker
2008-11-24
Implement link-state tracking on the routing table. Routes to interfaces
Claudio Jeker
2008-11-21
Change rn_mpath_next() to be able to walk over the full multipath list
Claudio Jeker
2008-05-07
Implement routing priorities. Every route inserted has a priority assigned
Claudio Jeker
2008-05-07
Redo rev 1.8 but this time with an additional fix to solve the dhclient crashes
Claudio Jeker
2007-12-05
Revert change which seems to break things like dhclient. Requested by
Kenneth R Westerback
2007-12-04
Always compare the nexthop if one is specified even if it is a non-multipath
Claudio Jeker
2006-06-18
Whitespace, oops.
Christopher Pascoe
2006-06-18
Add support for equal-cost multipath IP.
Christopher Pascoe
2006-06-16
adjust functions dealing with the routing table to take a table ID as
Henning Brauer
2005-05-15
typo
Henning Brauer
2005-05-15
ANSI, mostly from Toni Mueller <openbsd-tech@oeko.net>
Henning Brauer
2004-06-19
require RTF_MPATH to enter a multipath route with RTM_ADD.
Cedric Berger
2004-04-25
radix tree with multipath support. from kame. deraadt ok
Jun-ichiro itojun Hagino