aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_mppc.c
Commit message (Expand)AuthorAgeFilesLines
* mppc - Finish pluging NETGRAPH_MPPC_COMPRESSION.Pedro F. Giffuni2017-01-201-4/+3
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-6/+3
* Revert r267961, r267973:Glen Barber2014-06-271-3/+6
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-6/+3
* Make ng_mppc to not disable the node in case of multiple packet loss.Alexander Motin2014-05-221-4/+33
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-051-3/+3
* Revert my local not yet properly tested changes, that leaked inGleb Smirnoff2012-05-251-16/+23
* Revert r220768 for ng_ksocket. This node is special andGleb Smirnoff2012-05-241-23/+16
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-1/+1
* remove RESTARTABLE_PANICS optionAndriy Gapon2011-07-251-3/+0
* Node constructor methods are supposed to be called in syscallGleb Smirnoff2011-04-181-3/+1
* Remove some more alignment constraints.Alexander Motin2010-03-311-3/+3
* If source mbuf chain consists of only one mbuf, use it directly as sourceAlexander Motin2009-01-181-34/+51
* Use m_unshare()+m_copyback() instead of m_freem()+m_devget() to keepAlexander Motin2009-01-181-22/+23
* Unroll two loops of SHA1Update(). 60 bytes of static memory is not a price.Alexander Motin2008-12-161-9/+12
* Carefully handle memory errors to keep peers compression/encryption stateAlexander Motin2008-12-061-11/+24
* Fix a number of style issues in the MALLOC / FREE commit. I've tried toDag-Erling Smørgrav2008-10-231-1/+2
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-231-7/+6
* Fix build with NETGRAPH_MPPC_COMPRESSION but without NETGRAPH_MPPC_ENCRYPTION.Alexander Motin2007-05-181-0/+4
* Performance optimization of the "encryption without compression" case byAlexander Motin2007-05-111-70/+103
* Avoid extra rc4_init() when ng_mppc_updatekey() going to do it anyway.Alexander Motin2007-05-041-5/+7
* Compact code a bitAlexander Motin2007-05-041-5/+3
* Make coherency counter 12bit as it shouldAlexander Motin2007-05-041-4/+6
* Fix small mistake (sizeof(pad2) instead of sizeof(pad1))Alexander Motin2007-05-041-1/+1
* Remove unneded bzero().Alexander Motin2007-05-041-1/+0
* In preparation for making the modules actually use opt_*.h filesYaroslav Tykhiy2005-10-141-0/+6
* MPPC node is not thread safe.Gleb Smirnoff2005-06-031-0/+3
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-2/+3
* Switch to using C99 sparse initialisers for the type methods array.Julian Elischer2004-05-291-12/+8
* Take the rc4 code out of ng_mppc module so we don't fail to load whenDoug Ambrisko2003-02-051-0/+5
* Fix two bugs:Archie Cobbs2002-12-141-12/+27
* Don't use "NULL" when "0" is really meant.Archie Cobbs2002-08-221-2/+2
* o Move NTOHL() and associated macros into <sys/param.h>. These areMike Barcroft2002-02-181-1/+1
* Add support for 56 bit MPPE encryption.Archie Cobbs2001-12-151-7/+9
* Update to C99, s/__FUNCTION__/__func__/,David E. O'Brien2001-12-101-8/+8
* KSE Milestone 2Julian Elischer2001-09-121-0/+3
* Fix some memory leaksJulian Elischer2001-01-101-18/+24
* Part 2 of the netgraph rewrite.Julian Elischer2001-01-081-16/+15
* Rewrite of netgraph to start getting ready for SMP.Julian Elischer2001-01-061-51/+33
* Divorce the kernel binary ABI version number from the messageJulian Elischer2000-12-181-1/+1
* Reviewed by: Archie@freebsd.orgJulian Elischer2000-12-121-3/+4
* Add the use of M_ZERO to netgraph.David Malone2000-11-181-2/+1
* Since neither archie nor I work at Whistle any more, change our emailJulian Elischer2000-10-241-1/+1
* Remove unnecessary #include's as reported by phk's script.Archie Cobbs2000-09-221-1/+0
* Allocate all memory (including within node constructors) with M_NOWAITArchie Cobbs2000-09-211-1/+1
* Allocate memory with M_NOWAIT instead of M_WAITOK because we couldArchie Cobbs2000-09-211-1/+1
* Two simple changes to the kernel internal API for netgraph modules,Julian Elischer2000-04-281-2/+3
* Remove ~25 unneeded #include <sys/conf.h>Poul-Henning Kamp2000-04-191-1/+0
* A netgraph node that implements Microsoft Point-to-Point compressionArchie Cobbs2000-04-091-0/+797