Age | Commit message (Expand) | Author |
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 |
2014-06-11 | Always create a local route for every configured IPv4 address on the | Martin Pieuchot |
2014-05-07 | Kill the {nd6_,}useloopback buttons, using the loopback interface for | Martin Pieuchot |
2014-05-05 | Use a custom ifa_rtrequest function for point-to-point interfaces | Martin Pieuchot |
2014-04-14 | "struct pkthdr" holds a routing table ID, not a routing domain one. | Martin Pieuchot |
2014-04-10 | notify userland when arp entry is removed; ok mpi | Mike Belopuhov |
2014-03-27 | Stop mixing interface address flags with routing entry ones. | Martin Pieuchot |
2014-03-18 | Notify userland via the routing socket when ARP resolution completes; | Mike Belopuhov |
2014-03-18 | Rename rt_gettable() into rtable_get(), swap its arguments to be | Martin Pieuchot |
2014-03-11 | Remove gratuitous differences between arp and nd6 rtrequests, | Martin Pieuchot |
2014-03-10 | if_lladdr -> if_sadl, no functional change. | Martin Pieuchot |
2014-01-22 | Remove genmask support from the kernel. rtmsgs with RTA_GENMASK set will | Claudio Jeker |
2014-01-10 | replace the rest of the obsolete radix macros | Ted Unangst |
2014-01-09 | replace Bcopy macro with memmove and memcpy. ok mpi | Ted Unangst |
2014-01-09 | bzero/bcmp -> memset/memcmp. ok matthew | Ted Unangst |
2013-12-31 | bcopy -> memcpy. reviewed with one fix from matthew | Ted Unangst |
2013-11-27 | Since r1.106 we have a local variable referencing the receiving interface, | Martin Pieuchot |