summaryrefslogtreecommitdiffstats
path: root/sys/net/route.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Copy the user provided sockaddr into a normalized sockaddr in rtrequest()claudio2019-06-131-16/+59
* Make rt_mpls_set() be more strict in what it accepts. Also ensure thatclaudio2019-05-111-3/+8
* Found some historical code. Don't cast the pointer for bzero to a different type,deraadt2019-03-031-2/+2
* Remove KASSERT() for now. It triggers when destroying lo(4) of a rdomainclaudio2019-02-151-2/+1
* change rt_ifa_add and rt_ifa_del so they take an rdomain argument.dlg2019-02-131-29/+36
* remove the implict RTF_MPATH flag that rt_ifa_add() sets on new routes.dlg2019-02-101-3/+3
* Change rtable_mpath_reprio() to take the prefixlen as argument instead ofclaudio2018-11-231-5/+5
* Make sure the L2 entry is cloned before dereferencing its parent.mpi2018-09-271-6/+3
* superfluous newlinehenning2018-07-111-2/+1
* Factorize MPLS setup/teardown into two functions.mpi2018-06-251-28/+41
* Push the KERNEL_LOCK() inside route_input().mpi2018-06-111-7/+3
* Remove unused rtentry parameter.florian2018-04-241-3/+3
* Always reallocate a new memory chunk when changing the gateway of ampi2018-02-221-3/+6
* Removing an RTF_CLONING route entry should not invalidate an RTF_CACHEDmpi2018-02-201-9/+14
* If the kernel fails to clone an entry, report rtrequest(9) error.mpi2018-02-101-11/+16
* When multiple RTF_CLONING routes for the same subnet are present, usempi2018-02-081-4/+34
* Move the cloning bits in their own function.mpi2018-01-021-34/+42
* Revert 1.353, this breaks mpe(4). Also it seems not complete since rt_ifa_delclaudio2017-11-291-2/+5
* Restart the iteration when a multipath list is re-ordered to make surempi2017-09-051-28/+28
* Remove NET_LOCK()'s argument.mpi2017-08-111-4/+3
* Move a sanity check that only makes sense for userland where it belongs.mpi2017-08-021-11/+1
* Enable mpath support in the Allotment Routing Table (ART) on the ramdisk.florian2017-07-301-9/+1
* Switch installer to Allotment Routing Table (ART).florian2017-07-301-5/+1
* Add an error argument to rtm_send() instead of rerolling it insidempi2017-07-281-11/+5
* Export RTAX_IFP, RTAX_IFA and RTAX_LABEL to userland in rtdeletemsg().mpi2017-07-271-6/+8
* rt_getifa() is only needed for routing commands submited by userland.mpi2017-07-241-125/+3
* Replace rtrequest(RTM_DELETE...) rtrequest_delete() and do not evenmpi2017-06-091-27/+15
* Grab the KERNEL_LOCK() around rtm*() functions. Routing sockets globalsmpi2017-06-071-3/+7
* In ifa_ifwithroute() the rtalloc() needs to be done against the rdomainclaudio2017-05-271-2/+2
* Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED().mpi2017-05-161-4/+4
* Use the rt_rmx defines that hide the struct rt_kmetrics indirection.bluhm2017-04-191-2/+2
* Prefix functions dealing with routing messages with 'rtm_' and keepmpi2017-03-061-34/+9
* Allow MPLS switching and VPLS across rdomains.renato2017-03-021-6/+2
* Use rtable_match() rather than rtalloc(9) when adding a new route.mpi2017-02-281-2/+3
* Replace manual loops with FOREACH macro.bluhm2017-02-151-14/+10
* Always allocate counters memory using type M_COUNTERS.jca2017-02-051-2/+2
* A space here, a space there. Soon we're talking real whitespacekrw2017-01-241-20/+20
* when we lose link, do not delete entries that have the RTF_BFD flag setphessler2017-01-241-2/+2
* use per-cpu counters for rtstat.dlg2017-01-201-9/+11
* remove the BFD flag on a route *before* we actually delete the routephessler2017-01-191-6/+6
* Introduce the NET_LOCK() a rwlock used to serialize accesses to the partsmpi2016-12-191-5/+5
* Insert RTF_CLONED routes at a higher priority than their partent tompi2016-12-171-12/+18
* Make 'route add default' show a nicer error message if the providedstsp2016-12-141-2/+2
* Since net/route.c r1.337 interface priority factors into route prioritystsp2016-12-041-2/+2
* Assert that rt_match() is always called at IPL_SOFTNET rather thanmpi2016-12-021-4/+4
* m_free() and m_freem() test for NULL. Simplify callers which had their ownjsg2016-11-291-3/+2
* Kill rtioctl() stub, returning EOPNOTSUPP since tree import.mpi2016-11-211-7/+1
* Properly initialize ``ifa''.mpi2016-11-151-1/+2
* Reflect interface priorities when inserting RTF_CONNECTED routes.mpi2016-11-141-2/+2
* Automatically create a default lo(4) interface per rdomain.mpi2016-11-141-3/+1