summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_ipcomp.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* remove the "copy function" argument to bpf_mtap_hdr.dlg2019-09-301-2/+2
* Include the size of IPCOMP header when checking for compression.mpi2018-09-131-2/+2
* Add per-TDB counters and a new SADB extension to export them tompi2018-08-281-3/+6
* Fix for uninitialized variables.mpi2018-07-161-4/+4
* Introduce ipsec_output_cb() to merge duplicate code and account formpi2018-07-121-58/+16
* Convert AH & IPcomp to ipsec_input_cb() and count drops on input.mpi2018-07-111-57/+11
* Cleanup IPsec IPComp error handling with consistent goto drop.bluhm2018-05-121-44/+41
* Do not assume that mbufs within a chain do not have M_PKTHDR set.bluhm2018-05-021-7/+20
* Make {ah,esp,ipcomp}stat use percpu counters.visa2017-11-081-25/+23
* Use %s and __func__ in DPRINTF() to reduce false positive with grep(1).mpi2017-11-061-28/+26
* Remove NET_LOCK()'s argument.mpi2017-08-111-12/+12
* Replace 2 bcopy()'s with a simple assignment as both variables aredhill2017-04-051-5/+5
* Using ipcomp(4) with IPv6 transport mode failed with protocol familybluhm2017-02-171-1/+2
* Put back a return that I have removed by accident.bluhm2017-02-091-1/+2
* IPsec packets could be dropped unaccounted if output after cryptobluhm2017-02-071-5/+5
* Reduce the per-packet allocation costs for crypto operations (cryptop)patrick2017-02-071-3/+3
* The return code of crp_callback is never checked, so it is notbluhm2017-02-071-30/+20
* Grab the NET_LOCK() in ipcomp input callback.visa2017-01-091-5/+5
* Grab the NET_LOCK() before calling ipsp_process_done() as it ends upmpi2016-12-241-6/+6
* ANSIfy netinet/; from David Hillnaddy2016-09-241-18/+6
* avoid extensive mbuf allocation for IPsec by replacing m_inject(4)markus2016-09-131-4/+4
* fix panics caused by replacing m_copym2 with m_dup_pkt.dlg2016-08-181-14/+7
* replace the last uses of m_copym2 with m_dup_pkt.dlg2016-08-151-2/+2
* m_freem() can handle NULL, do not check for this condition beforehands.deraadt2015-07-151-5/+3
* Use proper argument type for crp_callback functions; no functional change.mikeb2015-06-151-17/+11
* Stubs and support code for NIC-enabled IPsec bite the dust.mikeb2015-04-171-4/+2
* make ipsp_address thread safe; ok mpimikeb2015-04-141-13/+27
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-3/+1
* unifdef INET in net code as a precursor to removing the pretend option.tedu2014-12-191-12/+1
* Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.mpi2014-12-051-1/+2
* move arc4random prototype to systm.h. more appropriate for most codetedu2014-11-181-3/+1
* Fewer <netinet/in_systm.h> !mpi2014-07-221-2/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-10/+10
* bpf code surgery / shuffling / simplification.henning2014-07-091-2/+2
* bzero/bcmp -> memset/memcmp. ok matthewtedu2014-01-091-4/+4
* Fix build with ENCDEBUG defined.mpi2013-05-141-1/+2
* Remove the extern keyword from function declarations, documentmpi2013-04-111-1/+4
* Merge of an original work by markus@ and gerhard@ to increasemikeb2013-02-141-2/+1
* spltdb() was really just #define'd to be splsoftnet(); replace the formerblambert2012-09-201-3/+3
* Replace the cruddy old sys/net/zlib.[ch]. We now use the sys/lib/libzderaadt2011-07-071-2/+3
* Add support for using IPsec in multiple rdomains.reyk2010-07-091-3/+5
* m_copyback can fail to allocate memory, but is a void fucntion so gymnasticsblambert2010-07-021-2/+2
* Allow to specify an alternative enc(4) interface for an SA. Allreyk2010-07-011-2/+2
* Replace enc(4) with a new implementation as a cloner device. We stillreyk2010-06-291-9/+14
* remove dead stores and newly created unused variables.chl2008-09-151-5/+1
* Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.krw2007-10-061-10/+10
* MALLOC+bzero -> malloc+M_ZERO.krw2007-10-031-7/+3
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-2/+3
* use M_READONLY when trying to find out whether we have to copymarkus2005-12-201-5/+4
* Introduce bpf_mtap_af and bpf_mtap_hdr to be used when passing a mbuf chainpascoe2005-07-311-13/+5