summaryrefslogtreecommitdiffstats
path: root/sys/netinet/if_ether.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Simplify arptfree() to no longer look at the route entry's refcounter.mpi2015-10-131-17/+8
* Move route entry debug helpers where they belong.mpi2015-10-071-107/+1
* Do not manually decrement rt's refcounter in arplookup() and let thempi2015-09-281-25/+35
* Fix uninitalized use of variable.claudio2015-09-161-2/+3
* There's no point in abstracting ifp->if_output() as long as pf_test()mpi2015-09-131-5/+5
* queue revarps to softnet so we can defer processing to a context withdlg2015-09-131-1/+7
* Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp.mpi2015-09-121-12/+5
* correctly hold and put a reference to the revarp ifp while tryingdlg2015-09-101-14/+13
* Rewrite arpproxy() to no longer iterate on the global list of interfaces.mpi2015-09-091-15/+11
* Fix English in comment. OK dlg@claudio2015-09-091-2/+2
* KNFmpi2015-08-191-31/+32
* Make arplookup() return a pointer to a "struct rtentry".mpi2015-08-191-15/+17
* Use __func__ rather than the function name in log(9) calls to removempi2015-08-171-8/+8
* Abstract the routing table internals behind an rtable_* API.mpi2015-07-181-13/+5
* Announce an IP address after inserting its corresponding RTF_LOCALmpi2015-07-171-9/+6
* Always use "ifp" instead of mixing it with "ac->ac_if" in in_arpinput().mpi2015-07-071-14/+14
* Pass a "struct ifnet *" instead of a "struct arpcom *" to arpresolve().mpi2015-06-231-6/+7
* Store a unique ID, an interface index, rather than a pointer to thempi2015-06-161-4/+9
* Replace a bunch of == 0 with == NULL in pointer tests. Nuke somekrw2015-06-071-11/+11
* Do not create ARP entries for RTF_BROADCAST routes.mpi2015-05-261-15/+3
* Allow multiple connected/interface routes to exist at the same time.claudio2015-05-151-15/+1
* Init rt to NULL in arpresolve(). Not a problem in practicejsg2015-04-221-2/+2
* replace the use of ifqueues for most input queues serviced by netisrdlg2015-04-101-10/+6
* Convert hand-rolled mbuf list used to store packets until ARPmpi2015-03-241-44/+29
* Check for the size of the supposed destination address when constructingmpi2015-03-141-1/+8
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* Do not store the key and the gateway of a route entry in the same chunkmpi2015-02-111-2/+2
* Print a different error message if the route entry supposed to containmpi2015-02-071-1/+10
* Convert various rtrequest1(RTM_DELETE,...) calls to rtdeletemsg(9).mpi2015-02-051-10/+2
* Revert rtdeletemsg conversion. It was not ok'd, I misunderstood bluhm@'smpi2015-01-281-9/+2
* Do not always try to rtfree(9) route entries inside rtdeletemsg(9).mpi2015-01-261-2/+9
* Only notify userland about resolved ARP entries if the Ethernet addressmpi2015-01-131-3/+6
* Factorize various duplicated chunks of (old and horrible) code, checkingmpi2015-01-081-13/+23
* unifdef INET in net code as a precursor to removing the pretend option.tedu2014-12-191-3/+1
* Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.mpi2014-12-051-1/+2
* Rename rtalloc1() into rtalloc(9) and convert its flags to only enablempi2014-11-011-3/+6
* Make sure broadcast entries won't be freed by the arp timer so we canmpi2014-09-031-2/+15
* Revert the addition of broadcast addresses, it apparently also corruptsmpi2014-08-261-13/+1
* When a local route entry is added for an ifa having a broadcast address,mpi2014-08-191-1/+13
* Use the RTF_LOCAL flag instead of abusing the RTF_LLINFO flag whenmpi2014-08-111-2/+2
* Convert ARP llinfo allocation to pool(9).mpi2014-08-111-3/+8
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* Always create a local route for every configured IPv4 address on thempi2014-07-121-3/+5
* Revert "Always create a local route for every configured IPv4 address",mpi2014-06-161-5/+3
* Always create a local route for every configured IPv4 address on thempi2014-06-111-3/+5
* Kill the {nd6_,}useloopback buttons, using the loopback interface formpi2014-05-071-21/+3
* Use a custom ifa_rtrequest function for point-to-point interfacesmpi2014-05-051-1/+7
* "struct pkthdr" holds a routing table ID, not a routing domain one.mpi2014-04-141-4/+4
* notify userland when arp entry is removed; ok mpimikeb2014-04-101-6/+2
* Stop mixing interface address flags with routing entry ones.mpi2014-03-271-2/+1