summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_ipip.c
AgeCommit message (Expand)Author
2024-08-22Unlock unlock ipip_sysctl().Vitaliy Makkoveev
2024-08-21Revert previous. It was committed mistakenly.Vitaliy Makkoveev
2024-08-21Unlock ipip_sysctl().Vitaliy Makkoveev
2024-05-17IPv6 has to use ip6_defhlim, not ip_defttl.Alexander Bluhm
2024-02-11Remove include netinet6/ip6_var.h from netinet/in_pcb.h.Alexander Bluhm
2023-11-28Remove struct inpcb from in6_embedscope() parameters.Alexander Bluhm
2023-09-16Allow counters_read(9) to take an optional scratch buffer.Martin Pieuchot
2022-01-02spellingJonathan Gray
2021-10-23There is an m_pullup() down in AH input. As it may free or changeAlexander Bluhm
2021-10-22Make error handling in IPsec consistent. Pass errors to the callers.Alexander Bluhm
2021-10-13The function ipip_output() was registered as .xf_output() xformAlexander Bluhm
2021-10-05Cleanup the error handling in ipsec ipip_output() and consistentlyAlexander Bluhm
2021-07-08The xformsw array never changes. Declare struct xformsw constantAlexander Bluhm
2021-07-08Debug printfs in encdebug were inconsistent, some missing newlinesAlexander Bluhm
2021-07-07Fix whitespaces in IPsec code.Alexander Bluhm
2021-01-09Enforce range with sysctl_int_bounded in ipip_sysctlgnezdo
2018-11-14provide ip_tos_patch() for setting ip_tos and patching the ipv4 cksum.David Gwynne
2018-08-28Add per-TDB counters and a new SADB extension to export them toMartin Pieuchot
2017-10-09Reduces the scope of the NET_LOCK() in sysctl(2) path.Martin Pieuchot
2017-07-05The IP in IP input function strips the outer header and reinsertsAlexander Bluhm
2017-06-20Do not use the interface pointer after if_put(). Rename ipip_input_gif()Alexander Bluhm
2017-06-19When dealing with mbuf pointers passed down as function parameters,Alexander Bluhm
2017-06-11Use a common 'goto bad' style and set mp to NULL after freeing itAlexander Bluhm
2017-05-30Introduce ipv{4,6}_input(), two wrappers around IP queues.Martin Pieuchot
2017-05-28Call bpf_mtap_af() a bit earlier in ipip_input(). This preparesAlexander Bluhm
2017-05-26In IPIP input rename the variable ipo to ip as it is used for innerAlexander Bluhm
2017-05-26Instead of looking at the IP version of the header, use the outerAlexander Bluhm
2017-05-18The function name ip4_input() is confusing as it also handles IPv6Alexander Bluhm
2017-05-06Convert the xformsw definition to C99 style initializer. Also fixAlexander Bluhm
2017-05-04If m is not a continuous mbuf cluster, m_pullup() in pr_input mayAlexander Bluhm
2017-05-04Introduce sstosa() for converting sockaddr_storage with a type safeAlexander Bluhm
2017-04-14Pass down the address family through the pr_input calls. ThisAlexander Bluhm
2017-04-05When building counter memory in preparation to copy to userland, alwaysTheo de Raadt
2017-03-10percpu counters for ip_ipip.cJeremie Courreges-Anglas
2017-01-29Change the IPv4 pr_input function to the way IPv6 is implemented,Alexander Bluhm
2017-01-25Since raw_input() and route_input() are gone from pr_input, we canAlexander Bluhm
2016-03-07Sync no-argument function declaration and definition by adding (void).Christian Weisgerber
2016-01-22add a missing if_put() to ipip_input()Jonathan Gray
2015-09-11in6_embedscope() needs to lose some weight. Remove the last argument.Claudio Jeker
2015-09-09if_put after if_getDavid Gwynne
2015-08-24Check for a RTF_LOCAL entry instead of iterating on the global listMartin Pieuchot
2015-08-14Replace sockaddr casts with the proper satosin() or satosin6() calls.Alexander Bluhm
2015-07-16Expand ancient NTOHL/NTOHS/HTONS/HTONL macros.Martin Pieuchot
2015-07-15m_freem() can handle NULL, do not check for this condition beforehands.Theo de Raadt
2015-07-15rename mbuf ** parameter from m to mp, to match other similar codeTheo de Raadt
2015-06-16Store a unique ID, an interface index, rather than a pointer to theMartin Pieuchot
2015-05-13test mbuf pointers against NULL not 0Jonathan Gray
2015-04-14make ipsp_address thread safe; ok mpiMike Belopuhov
2015-04-10replace the use of ifqueues for most input queues serviced by netisrDavid Gwynne
2014-12-19unifdef INET in net code as a precursor to removing the pretend option.Ted Unangst