summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_ipcomp.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* resolve conflict between M_TUNNEL and M_ANYCAST6, remove M_COMP (it'smarkus2004-11-251-2/+1
* only add ipcomp headers if we've actually compressed the payload; with jfb@markus2004-06-261-77/+35
* m_copyback()'s 4th arg is const void *, nuke (caddr_t) casts.jason2003-08-141-3/+3
* o sanity check mbuf earlier.millert2003-04-021-28/+34
* Avoid using FREEd data when we get a crypto error; Patrick Latifimillert2003-03-311-12/+16
* Add missing splx; Patrick Latifimillert2003-03-311-1/+3
* missed in lzs addition: allow LZS as an comp typejason2003-02-181-3/+4
* Remove commons; inspired by netbsd.jason2003-02-121-1/+3
* Fix max packet size check. Noticed by <j@pureftpd.org>. jjbg@ ok.ho2002-09-121-5/+4
* Free crp_opaque only after we've determined we're not going toangelos2002-07-051-3/+6
* minor indent cleanup while reading codederaadt2002-06-201-11/+11
* Style.angelos2002-06-181-26/+13
* Initialize mo to NULL, for good measure -- sam@errno.comangelos2002-06-181-1/+2
* Missing freeing of crp, from sam@errno.comangelos2002-06-181-4/+4
* Fix double-free.angelos2002-06-181-12/+12
* whitespaceitojun2002-06-091-11/+11
* IPComp. Just like for deflate earlier, it won't be compiled until everythingjjbg2001-07-051-0/+725