index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
netinet
/
ip_ipcomp.c
Age
Commit message (
Expand
)
Author
2015-07-15
m_freem() can handle NULL, do not check for this condition beforehands.
Theo de Raadt
2015-06-15
Use proper argument type for crp_callback functions; no functional change.
Mike Belopuhov
2015-04-17
Stubs and support code for NIC-enabled IPsec bite the dust.
Mike Belopuhov
2015-04-14
make ipsp_address thread safe; ok mpi
Mike Belopuhov
2015-03-14
Remove some includes include-what-you-use claims don't
Jonathan Gray
2014-12-19
unifdef INET in net code as a precursor to removing the pretend option.
Ted Unangst
2014-12-05
Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.
Martin Pieuchot
2014-11-18
move arc4random prototype to systm.h. more appropriate for most code
Ted Unangst
2014-07-22
Fewer <netinet/in_systm.h> !
Martin Pieuchot
2014-07-12
add a size argument to free. will be used soon, but for now default to 0.
Ted Unangst
2014-07-09
bpf code surgery / shuffling / simplification.
Henning Brauer
2014-01-09
bzero/bcmp -> memset/memcmp. ok matthew
Ted Unangst
2013-05-14
Fix build with ENCDEBUG defined.
Martin Pieuchot
2013-04-11
Remove the extern keyword from function declarations, document
Martin Pieuchot
2013-02-14
Merge of an original work by markus@ and gerhard@ to increase
Mike Belopuhov
2012-09-20
spltdb() was really just #define'd to be splsoftnet(); replace the former
Bret Lambert
2011-07-07
Replace the cruddy old sys/net/zlib.[ch]. We now use the sys/lib/libz
Theo de Raadt
2010-07-09
Add support for using IPsec in multiple rdomains.
Reyk Floeter
2010-07-02
m_copyback can fail to allocate memory, but is a void fucntion so gymnastics
Bret Lambert
2010-07-01
Allow to specify an alternative enc(4) interface for an SA. All
Reyk Floeter
2010-06-29
Replace enc(4) with a new implementation as a cloner device. We still
Reyk Floeter
2008-09-15
remove dead stores and newly created unused variables.
Charles Longeau
2007-10-06
Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.
Kenneth R Westerback
2007-10-03
MALLOC+bzero -> malloc+M_ZERO.
Kenneth R Westerback
2006-03-25
allow bpf(4) to ignore packets based on their direction (inbound or
Damien Miller
2005-12-20
use M_READONLY when trying to find out whether we have to copy
Markus Friedl
2005-07-31
Introduce bpf_mtap_af and bpf_mtap_hdr to be used when passing a mbuf chain
Christopher Pascoe
2004-11-25
resolve conflict between M_TUNNEL and M_ANYCAST6, remove M_COMP (it's
Markus Friedl
2004-06-26
only add ipcomp headers if we've actually compressed the payload; with jfb@
Markus Friedl
2003-08-14
m_copyback()'s 4th arg is const void *, nuke (caddr_t) casts.
Jason Wright
2003-04-02
o sanity check mbuf earlier.
Todd C. Miller
2003-03-31
Avoid using FREEd data when we get a crypto error; Patrick Latifi
Todd C. Miller
2003-03-31
Add missing splx; Patrick Latifi
Todd C. Miller
2003-02-18
missed in lzs addition: allow LZS as an comp type
Jason Wright
2003-02-12
Remove commons; inspired by netbsd.
Jason Wright
2002-09-12
Fix max packet size check. Noticed by <j@pureftpd.org>. jjbg@ ok.
Hakan Olsson
2002-07-05
Free crp_opaque only after we've determined we're not going to
Angelos D. Keromytis
2002-06-20
minor indent cleanup while reading code
Theo de Raadt
2002-06-18
Style.
Angelos D. Keromytis
2002-06-18
Initialize mo to NULL, for good measure -- sam@errno.com
Angelos D. Keromytis
2002-06-18
Missing freeing of crp, from sam@errno.com
Angelos D. Keromytis
2002-06-18
Fix double-free.
Angelos D. Keromytis
2002-06-09
whitespace
Jun-ichiro itojun Hagino
2001-07-05
IPComp. Just like for deflate earlier, it won't be compiled until everything
Jean-Jacques Bernard-Gundol