Age | Commit message (Expand) | Author |
2017-08-11 | Remove NET_LOCK()'s argument. | Martin Pieuchot |
2017-08-08 | Increase the limit of the IP protocol queues from 256 to 2048 mbufs. | Alexander Bluhm |
2017-08-04 | We do have SO_TIMESTAMP since some time and there is other code in the | Florian Obser |
2017-07-05 | Fix RAMDISK build. | Visa Hankala |
2017-07-05 | The IP in IP input function strips the outer header and reinserts | Alexander Bluhm |
2017-06-26 | Convert ip_input() to a pr_input style function. Goal is to process | Alexander Bluhm |
2017-06-19 | When dealing with mbuf pointers passed down as function parameters, | Alexander Bluhm |
2017-06-19 | The IP multicast forward functions return an errno, call the variable | Alexander Bluhm |
2017-05-31 | Move IPv4 & IPv6 incoming/forwarding path, PIPEX ppp processing and | Martin Pieuchot |
2017-05-30 | Carp balancing ip does not work since there is a mac filter in | friehm |
2017-05-30 | Introduce ipv{4,6}_input(), two wrappers around IP queues. | Martin Pieuchot |
2017-05-29 | Per-interface list of addresses, both multicast and unicast, are | Martin Pieuchot |
2017-05-28 | clang warns on unused labels. Place a recently introduced label under | Jonathan Gray |
2017-05-28 | Rename ip_local() to ip_deliver() and give it the same parameters | Alexander Bluhm |
2017-05-22 | Move IPsec forward and local policy check functions to ipsec_input.c | Alexander Bluhm |
2017-05-22 | Use the IPsec policy check from IPv4 also when doing local delivery | Alexander Bluhm |
2017-05-16 | Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED(). | Martin Pieuchot |
2017-05-12 | IPsec packets were passed through ip_input() a second time after | Alexander Bluhm |
2017-05-12 | Use the IPsec policy check from ipv4_input() also when forwarding | Alexander Bluhm |
2017-05-11 | Fix white spaces and wrap long line. No binary change. | Alexander Bluhm |
2017-04-19 | Use the rt_rmx defines that hide the struct rt_kmetrics indirection. | Alexander Bluhm |
2017-04-14 | Pass down the address family through the pr_input calls. This | Alexander Bluhm |
2017-04-05 | When building counter memory in preparation to copy to userland, always | Theo de Raadt |
2017-02-05 | Always allocate counters memory using type M_COUNTERS. | Jeremie Courreges-Anglas |
2017-01-31 | Use CTASSERT instead of KASSERT for a few sysctl that use the counters API | Jeremie Courreges-Anglas |
2017-01-29 | Change the IPv4 pr_input function to the way IPv6 is implemented, | Alexander Bluhm |
2017-01-25 | Since raw_input() and route_input() are gone from pr_input, we can | Alexander Bluhm |
2016-12-20 | A NET_LOCK() was is missing in tcp_sysctl() which shows up as spl | Alexander Bluhm |
2016-12-19 | Extend the multicast sockets and multicast hash table support to multiple | Rafael Zalamena |
2016-12-19 | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts | Martin Pieuchot |
2016-11-28 | Path MTU discovery and traceroute did not always work with pf af-to. | Alexander Bluhm |
2016-11-28 | Assert that every slow/fast timeout routine is called at IPL_SOFTNET. | Martin Pieuchot |
2016-11-23 | Keep checks for local delivery close to in_ouraddr(). | Martin Pieuchot |
2016-11-14 | use M_COUNTERS to allocate counters. | David Gwynne |
2016-11-14 | turn ipstat into a set of percpu counters. | David Gwynne |
2016-11-08 | Only use the routing table for source address selection when processing IP | Martin Pieuchot |
2016-09-22 | Fix indentation. No binary change. | Jonathan Gray |
2016-09-15 | all pools have their ipl set via pool_setipl, so fold it into pool_init. | David Gwynne |
2016-09-06 | pool_setipl for various netinet and netinet6 bits | David Gwynne |
2016-07-22 | Fix a double rtfree(9) triggered when IPSEC inserts a more specific | Martin Pieuchot |
2016-07-18 | Hide pf internals by moving code from in_ouraddr() to pf_ouraddr(). | Alexander Bluhm |
2016-06-18 | Add net.inet.{tcp,udp}.rootonly sysctl, to mark which ports | Vincent Gross |
2016-05-07 | Use rtalloc_mpath() when checking for local route entries because we | Martin Pieuchot |
2016-05-03 | Make ip_forward() use the route entry fetched in in_ouraddr() when it is | Martin Pieuchot |
2016-04-25 | Remove the single cache route for forwarding. | Martin Pieuchot |
2016-04-19 | Instead of freeing a cached RTF_MPATH route after using it, free it | Martin Pieuchot |
2016-04-18 | Unbreak RAMDISK, found by deraadt@ | Martin Pieuchot |
2016-04-18 | Put a KERNEL_LOCK/UNLOCK dance around sections that still need some | Martin Pieuchot |
2016-04-15 | Kill in_rtaddr() and use rtalloc(9) directly in ip_dooptions(). | Martin Pieuchot |
2016-03-29 | - packet must keep reference to statekey | Alexandr Nedvedicky |