Age | Commit message (Expand) | Author |
2015-09-13 | Get the default loopback interface pointer just after doing a route | Martin Pieuchot |
2015-09-12 | Now that rtrequest1(9) properly sets RTF_UP for newly added route, | Martin Pieuchot |
2015-09-12 | Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp. | Martin Pieuchot |
2015-09-12 | Introduce if_input_local() a function to feed local traffic back to | Martin Pieuchot |
2015-09-11 | Bad whatever, that if_put() should not be there. Found the hard way by deraadt@ | Claudio Jeker |
2015-09-11 | if_put after if_get for in6_src and ip6_output which got a lot easier after | Claudio Jeker |
2015-09-11 | if_put after if_get for nd6_nbr. OK dlg@ | Claudio Jeker |
2015-09-11 | if_put after if_get when IP6_EXTHDR_GET fails in icmp6_input. | David Gwynne |
2015-09-11 | Rewrite in6_selectroute() to no longer return an ifp. | Martin Pieuchot |
2015-09-11 | Convert _TM_ flags to TAME_ flags, collapsing the entire mapping | Theo de Raadt |
2015-09-11 | When pf modifies a TCP packet, it sets the M_TCP_CSUM_OUT flag in | Alexander Bluhm |
2015-09-11 | Move the multicast option parsing out of in6_selectroute(). | Martin Pieuchot |
2015-09-11 | Kill selectroute(). | Martin Pieuchot |
2015-09-11 | if_put for ip6_input. OK mpi@ | Claudio Jeker |
2015-09-11 | if_put for icmp6. Again we cheat a bit with the hop limit to simplify the code. | Claudio Jeker |
2015-09-11 | Only include <sys/tame.h> in the .c files that need it | Philip Guenther |
2015-09-11 | Kill yet another argument to functions in IPv6. This time ip6_output's | Claudio Jeker |
2015-09-11 | in6_embedscope() needs to lose some weight. Remove the last argument. | Claudio Jeker |
2015-09-10 | It is time to put inet6 on a diet. Use the flensing knife and cut out | Claudio Jeker |
2015-09-10 | Kill in6_ifstat_inc() and associated per-ifp storage. | Martin Pieuchot |
2015-09-10 | In IPv6 source address selection prefer addresses of the outgoing | Alexander Bluhm |
2015-09-10 | if_put dance, shuffle some code and switch a printf to print the ifindex | Claudio Jeker |
2015-09-10 | Fewer in6_ifstat_inc() | Martin Pieuchot |
2015-09-10 | Stop using in6_ifstat_inc(). | Martin Pieuchot |
2015-09-10 | More if_put suffling. OK dlg@ | Claudio Jeker |
2015-09-10 | More complicated if_put dance. Special handling for multicast_register_if | Claudio Jeker |
2015-09-10 | Another trivial if_put addition. OK dlg@ | Claudio Jeker |
2015-09-10 | Trivial if_put addition. OK dlg@ | Claudio Jeker |
2015-09-09 | Kill icmp6_ifstat_inc() and associated per-ifp storage. | Martin Pieuchot |
2015-09-09 | Kill some commented out in6_ifstat_inc(). | Martin Pieuchot |
2015-09-09 | Kill a couple of if_get()s only needed to increment per-ifp IPv6 stats. | Martin Pieuchot |
2015-09-04 | Tunnels also need a cloning route. | Martin Pieuchot |
2015-09-04 | Make every subsystem using a radix tree call rn_init() and pass the | Martin Pieuchot |
2015-09-03 | Change the order of operations for loopback interfaces to have | Martin Pieuchot |
2015-09-03 | Revert (again!) the two uses of rtisvalid(9), they break NFS! | Martin Pieuchot |
2015-09-03 | Convert ip{,6}_output() (cached) route entry checks to rtisvalid(9). | Martin Pieuchot |
2015-09-02 | Revert the two uses of rtisvalid(9) for the moment, it breaks dhclient(8) | Martin Pieuchot |
2015-09-01 | Kill unused ``ia_net'' field in the struct in6_ifaddr, bad copy | Martin Pieuchot |
2015-09-01 | Convert ip{,6}_output() (cached) route entry checks to rtisvalid(9). | Martin Pieuchot |
2015-08-31 | The return value of nd6_cache_lladdr() is never used so make it a void. | Martin Pieuchot |
2015-08-31 | Do not install connected routes on loopback interfaces. | Martin Pieuchot |
2015-08-31 | Compute the checksum before looping back the copy of a multicast packet. | Martin Pieuchot |
2015-08-31 | `encif' should only be used under #ifdef NPF. | Martin Pieuchot |
2015-08-30 | Use a global table for domains instead of building a list at run time. | Martin Pieuchot |
2015-08-24 | nd6_prefix_add() is no longer used and die. | Martin Pieuchot |
2015-08-24 | Start moving away from the global prefix list by limiting its usage to | Martin Pieuchot |
2015-08-24 | Always increment the reference counter of the returned route entry in | Martin Pieuchot |
2015-08-24 | Rework the code to decide when to perform DAD to no longer rely on the | Martin Pieuchot |
2015-08-24 | In kernel initialize struct sockaddr_in and sockaddr_in6 to zero | Alexander Bluhm |
2015-08-23 | Use simple byte pointer arithmetic and memcpy from/to aligned stack | Christian Weisgerber |