aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_pptpgre.c
Commit message (Expand)AuthorAgeFilesLines
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-2/+2
* o Untangle the confusion with the malloc flags {M_WAITOK, M_NOWAIT} andBosko Milekic2002-12-191-1/+1
* Relax checking of incoming PPTP GRE packets a bit: ignore a bogus payloadArchie Cobbs2002-09-141-1/+1
* Const'ify variables to make it clear we're not writing to the mbuf data.Archie Cobbs2002-06-051-8/+9
* Fix GCC warnings caused by initializing a zero length array. In the process,Archie Cobbs2002-05-311-6/+6
* Use 'struct callout' instead of 'struct callout_handle' to avoidArchie Cobbs2002-04-141-25/+81
* Update to C99, s/__FUNCTION__/__func__/,David E. O'Brien2001-12-101-6/+6
* Don't reference a node after we dropped a reference to itArchie Cobbs2001-04-111-1/+2
* netgraph.h:Julian Elischer2001-03-101-1/+2
* Fix potential crash caused by packets with bogus ACK's.Archie Cobbs2001-03-081-1/+2
* Part 2 of the netgraph rewrite.Julian Elischer2001-01-081-31/+30
* Rewrite of netgraph to start getting ready for SMP.Julian Elischer2001-01-061-46/+55
* Divorce the kernel binary ABI version number from the messageJulian Elischer2000-12-181-2/+2
* Reviewed by: Archie@freebsd.orgJulian Elischer2000-12-121-2/+1
* 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
* Calling untimeout(9) leads to a race window where memory could be leaked.Archie Cobbs2000-10-111-21/+5
* Remove unnecessary #include's as reported by phk's script.Archie Cobbs2000-09-221-3/+0
* Allocate all memory (including within node constructors) with M_NOWAITArchie Cobbs2000-09-211-1/+1
* Followup to previous commit..Archie Cobbs2000-07-251-20/+40
* Several fixes:Archie Cobbs2000-07-251-25/+54
* Fix incorrectly implemented receive ACK timeout algorithm:Archie Cobbs2000-06-281-14/+20
* - Start sequence numbers at zero instead of one; the rest of theArchie Cobbs2000-06-261-84/+57
* Fix a couple of bugs:Archie Cobbs2000-05-051-41/+209
* 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
* Fix race condition caused by missing splnet()'s.Archie Cobbs2000-01-041-0/+4
* New netgraph node type 'pptpgre': this performs GRE encapsulationArchie Cobbs1999-12-081-0/+759