| Commit message (Expand) | Author | Age | Files | Lines |
* | Further cleanup of icmp_do_error. |  claudio | 2018-11-28 | 1 | -19/+13 |
* | In icmp_input_if() m_pullup up the maximum size of required data at the start. |  claudio | 2018-11-05 | 1 | -12/+3 |
* | Consider the size of IP header when doing the ICMP length overflow |  bluhm | 2018-11-05 | 1 | -3/+3 |
* | Fixup the case where an mbuf cluster is used. Correctly offset the data to |  claudio | 2018-11-05 | 1 | -3/+5 |
* | sync icmp_mtudisc_clone() with icmp6_mtudisc_clone(); prompted by bluhm@ |  miko | 2018-09-06 | 1 | -17/+12 |
* | rtm_send() the cloned routes because of ICMP mtu changes. Until now |  claudio | 2018-07-11 | 1 | -1/+2 |
* | All places that call carp_lsdrop() use the interface pointer already. |  bluhm | 2018-05-21 | 1 | -7/+4 |
* | The pf code marks ICMP packets belonging to an TCP or UDP divert |  bluhm | 2017-12-14 | 1 | -18/+12 |
* | When reusing an mbuf at the upper end of the network stack, strip |  bluhm | 2017-10-18 | 1 | -4/+7 |
* | Reduces the scope of the NET_LOCK() in sysctl(2) path. |  mpi | 2017-10-09 | 1 | -3/+5 |
* | icmp_mtudisc() might be called by TCP even on loopback after a |  bluhm | 2017-08-10 | 1 | -1/+11 |
* | When dealing with mbuf pointers passed down as function parameters, |  bluhm | 2017-06-19 | 1 | -2/+2 |
* | Carp balancing ip does not work since there is a mac filter in |  friehm | 2017-05-30 | 1 | -4/+4 |
* | Fix a mbuf leak when reflecting an ICMP packet with IP options. |  bluhm | 2017-05-22 | 1 | -2/+4 |
* | If m is not a continuous mbuf cluster, m_pullup() in pr_input may |  bluhm | 2017-05-04 | 1 | -3/+3 |
* | Use the rt_rmx defines that hide the struct rt_kmetrics indirection. |  bluhm | 2017-04-19 | 1 | -9/+9 |
* | Pass down the address family through the pr_input calls. This |  bluhm | 2017-04-14 | 1 | -6/+6 |
* | When building counter memory in preparation to copy to userland, always |  deraadt | 2017-04-05 | 1 | -2/+2 |
* | Use percpu counters for icmp |  jmatthew | 2017-02-07 | 1 | -27/+42 |
* | Change the IPv4 pr_input function to the way IPv6 is implemented, |  bluhm | 2017-01-29 | 1 | -15/+18 |
* | Reduce the difference between struct protosw and ip6protosw. The |  bluhm | 2017-01-26 | 1 | -3/+3 |
* | Since raw_input() and route_input() are gone from pr_input, we can |  bluhm | 2017-01-25 | 1 | -12/+6 |
* | A NET_LOCK() was is missing in tcp_sysctl() which shows up as spl |  bluhm | 2016-12-20 | 1 | -4/+4 |
* | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts |  mpi | 2016-12-19 | 1 | -5/+5 |
* | Explicitly initialize rti_ifa when automagically adding a route. |  mpi | 2016-11-28 | 1 | -1/+2 |
* | Bring icmp6_mtudisc_clone() in line with icmp_mtudisc_clone(). The |  bluhm | 2016-11-16 | 1 | -2/+3 |
* | Inherit route label when creating dynamic routes for path MTU. |  bluhm | 2016-11-16 | 1 | -2/+5 |
* | turn ipstat into a set of percpu counters. |  dlg | 2016-11-14 | 1 | -2/+2 |
* | Do not call splsoftnet() recursively, this won't work with a lock. |  mpi | 2016-11-09 | 1 | -7/+5 |
* | Do not dereference ``rt->rt_ifa'' after calling rtfree(9). |  mpi | 2016-08-22 | 1 | -5/+8 |
* | Always pass a valid interface pointer to rtdeletemsg(). |  mpi | 2015-12-09 | 1 | -14/+22 |
* | ip_send()/ip6_send() allow PF to send response packet in ipsoftnet task. |  sashan | 2015-12-03 | 1 | -2/+5 |
* | When destroying an interface, we have to wait until all references |  bluhm | 2015-12-02 | 1 | -3/+3 |
* | Kill the RT_REPORT flag to rtalloc() and stop sending RTM_MISS messages |  claudio | 2015-12-02 | 1 | -3/+3 |
* | Kill redundant or unused arguments in rtredirect(). |  mpi | 2015-12-01 | 1 | -4/+3 |
* | Use if_get() rather than dereferencing rt_ifp directly. |  mpi | 2015-11-21 | 1 | -6/+12 |
* | Rename rtrequest1() to rtrequest(). |  bluhm | 2015-10-30 | 1 | -2/+2 |
* | Do not dereference ``ia_ifp'' when we already have an ``ifp'' pointer. |  mpi | 2015-10-22 | 1 | -3/+3 |
* | Stop checking for RTF_UP directly, call rtisvalid(9) instead. |  mpi | 2015-10-19 | 1 | -6/+2 |
* | Sync rtisvalid(9) check for local route entries with r1.257 of |  mpi | 2015-10-19 | 1 | -6/+5 |
* | Always increment rt_use inside rtalloc(9) instead of doing it in some |  mpi | 2015-09-23 | 1 | -2/+1 |
* | When pf modifies a TCP packet, it sets the M_TCP_CSUM_OUT flag in |  bluhm | 2015-09-11 | 1 | -2/+2 |
* | if_put after if_get in icmp input. |  dlg | 2015-09-10 | 1 | -10/+22 |
* | Replace sockaddr casts with the proper satosin(), ... calls. |  bluhm | 2015-09-01 | 1 | -4/+4 |
* | Replace sockaddr casts with the proper satosin() or satosin6() calls. |  bluhm | 2015-08-14 | 1 | -2/+2 |
* | Store a unique ID, an interface index, rather than a pointer to the |  mpi | 2015-06-16 | 1 | -3/+5 |
* | Replace a bunch of == 0 with == NULL in pointer tests. Nuke some |  krw | 2015-06-07 | 1 | -5/+5 |
* | Do not leak a rtentry if it is unusable. |  mpi | 2015-05-19 | 1 | -2/+4 |
* | test mbuf pointers against NULL not 0 |  jsg | 2015-05-13 | 1 | -2/+2 |
* | Convert various rtrequest1(RTM_DELETE,...) calls to rtdeletemsg(9). |  mpi | 2015-02-05 | 1 | -19/+3 |