Age | Commit message (Expand) | Author |
2015-10-27 | Move code around for clarity, no functional change. | Martin Pieuchot |
2015-10-25 | Introduce if_rtrequest() the successor of ifa_rtrequest(). | Martin Pieuchot |
2015-10-22 | Drop historical comment and an old '#if notyet'. | Martin Pieuchot |
2015-10-22 | Make sure that the address matching the key (destination) of a route | Martin Pieuchot |
2015-10-22 | Inspired by satosin(), use inline functions to convert sockaddr dl. | Alexander Bluhm |
2015-10-22 | Do not pass an ``ia'' just to dereference ``ia_ifp''. | Martin Pieuchot |
2015-10-13 | Simplify arptfree() to no longer look at the route entry's refcounter. | Martin Pieuchot |
2015-10-07 | Move route entry debug helpers where they belong. | Martin Pieuchot |
2015-09-28 | Do not manually decrement rt's refcounter in arplookup() and let the | Martin Pieuchot |
2015-09-16 | Fix uninitalized use of variable. | Claudio Jeker |
2015-09-13 | There's no point in abstracting ifp->if_output() as long as pf_test() | Martin Pieuchot |
2015-09-13 | queue revarps to softnet so we can defer processing to a context with | David Gwynne |
2015-09-12 | Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp. | Martin Pieuchot |
2015-09-10 | correctly hold and put a reference to the revarp ifp while trying | David Gwynne |
2015-09-09 | Rewrite arpproxy() to no longer iterate on the global list of interfaces. | Martin Pieuchot |
2015-09-09 | Fix English in comment. OK dlg@ | Claudio Jeker |
2015-08-19 | KNF | Martin Pieuchot |
2015-08-19 | Make arplookup() return a pointer to a "struct rtentry". | Martin Pieuchot |
2015-08-17 | Use __func__ rather than the function name in log(9) calls to remove | Martin Pieuchot |
2015-07-18 | Abstract the routing table internals behind an rtable_* API. | Martin Pieuchot |
2015-07-17 | Announce an IP address after inserting its corresponding RTF_LOCAL | Martin Pieuchot |
2015-07-07 | Always use "ifp" instead of mixing it with "ac->ac_if" in in_arpinput(). | Martin Pieuchot |
2015-06-23 | Pass a "struct ifnet *" instead of a "struct arpcom *" to arpresolve(). | Martin Pieuchot |
2015-06-16 | Store a unique ID, an interface index, rather than a pointer to the | Martin Pieuchot |
2015-06-07 | Replace a bunch of == 0 with == NULL in pointer tests. Nuke some | Kenneth R Westerback |
2015-05-26 | Do not create ARP entries for RTF_BROADCAST routes. | Martin Pieuchot |
2015-05-15 | Allow multiple connected/interface routes to exist at the same time. | Claudio Jeker |
2015-04-22 | Init rt to NULL in arpresolve(). Not a problem in practice | Jonathan Gray |
2015-04-10 | replace the use of ifqueues for most input queues serviced by netisr | David Gwynne |
2015-03-24 | Convert hand-rolled mbuf list used to store packets until ARP | Martin Pieuchot |
2015-03-14 | Check for the size of the supposed destination address when constructing | Martin Pieuchot |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-11 | Do not store the key and the gateway of a route entry in the same chunk | Martin Pieuchot |
2015-02-07 | Print a different error message if the route entry supposed to contain | Martin Pieuchot |
2015-02-05 | Convert various rtrequest1(RTM_DELETE,...) calls to rtdeletemsg(9). | Martin Pieuchot |
2015-01-28 | Revert rtdeletemsg conversion. It was not ok'd, I misunderstood bluhm@'s | Martin Pieuchot |
2015-01-26 | Do not always try to rtfree(9) route entries inside rtdeletemsg(9). | Martin Pieuchot |
2015-01-13 | Only notify userland about resolved ARP entries if the Ethernet address | Martin Pieuchot |
2015-01-08 | Factorize various duplicated chunks of (old and horrible) code, checking | Martin Pieuchot |
2014-12-19 | unifdef INET in net code as a precursor to removing the pretend option. | Ted Unangst |
2014-12-05 | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. | Martin Pieuchot |
2014-11-01 | Rename rtalloc1() into rtalloc(9) and convert its flags to only enable | Martin Pieuchot |
2014-09-03 | Make sure broadcast entries won't be freed by the arp timer so we can | Martin Pieuchot |
2014-08-26 | Revert the addition of broadcast addresses, it apparently also corrupts | Martin Pieuchot |
2014-08-19 | When a local route entry is added for an ifa having a broadcast address, | Martin Pieuchot |
2014-08-11 | Use the RTF_LOCAL flag instead of abusing the RTF_LLINFO flag when | Martin Pieuchot |
2014-08-11 | Convert ARP llinfo allocation to pool(9). | Martin Pieuchot |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-12 | Always create a local route for every configured IPv4 address on the | Martin Pieuchot |
2014-06-16 | Revert "Always create a local route for every configured IPv4 address", | Martin Pieuchot |