aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_pptpgre.c
Commit message (Expand)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
* ng_pptpgre(4): Fix a typo in a source code commentGordon Bergling2021-11-031-1/+1
* net: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-2/+1
* Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (17 of many)Pawel Biernacki2020-02-261-1/+2
* Make ng_pptpgre(8) netgraph node be able to restore order for packetsEugene Grosbein2018-11-041-37/+340
* sys/netgraph: spelling fixes in comments.Pedro F. Giffuni2016-04-291-1/+1
* sys: extend use of the howmany() macro when available.Pedro F. Giffuni2016-04-261-2/+2
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-051-2/+2
* Remove duplicate check.Alexander Motin2012-08-031-1/+1
* Node constructor methods are supposed to be called in syscallGleb Smirnoff2011-04-181-3/+1
* Remove alignment constraints.Alexander Motin2010-04-011-11/+11
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-231-2/+2
* Some minor code and math optimizations.Alexander Motin2008-03-261-40/+21
* Rewrite node to support multiple hooks, alike to ng_l2tp, to use one pairAlexander Motin2008-03-241-241/+280
* Quoting Alexander:Gleb Smirnoff2007-02-021-4/+5
* Rework locking, that I have introduced recently, since it was incorrect:Gleb Smirnoff2005-09-081-35/+54
* Lock down PPTP node, since it has many data structures, that won't surviveGleb Smirnoff2005-08-301-7/+25
* Utilize callout_pending() macroGleb Smirnoff2005-01-111-1/+1
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-2/+3
* Use ng_callout() and ng_uncallout() instead of home-grownGleb Smirnoff2004-12-091-108/+17
* Increase PPTP_MAX_TIMEOUT up to 3 seconds. 10 prooved too much for high packetGleb Smirnoff2004-09-061-1/+1
* Switch to using C99 sparse initialisers for the type methods array.Julian Elischer2004-05-291-12/+9
* Add 'enableWindowing' configuration knob to the ng_pptpgre(4) netgraph node.Archie Cobbs2004-04-261-35/+49
* Lower the maximum ACK timeout for GRE packets from 10 to 1 second.Archie Cobbs2003-11-181-1/+1
* Don't use ovbcopy().Dag-Erling Smørgrav2003-04-041-1/+1
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-2/+2
* 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