aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
Commit message (Expand)AuthorAgeFilesLines
* KAME related header files additions and merges.Yoshinobu Inoue1999-11-051-0/+6
* Change so_cred's type to a ucred, not a pcred. THis makes more sense, actually.Brian Feldman1999-09-191-4/+2
* Restructure TCP timeout handling:Jonathan Lemon1999-08-301-3/+35
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Add readonly OID ``net.inet.tcp.tcbhashsize'' so it is possible toJonathan Lemon1999-08-261-1/+6
* Two new sysctls: net.inet.tcp.getcred and net.inet.udp.getcred. These takeBrian Feldman1999-07-111-1/+33
* Use the new tunable macros for the net.inet.tcp.tcbhashsize tunable.Mike Smith1999-07-051-3/+2
* Close a race window where a tcp socket is closed while tcp_pcblist isTor Egge1999-06-161-2/+7
* Add sysctl descriptions to many SYSCTL_XXXsBill Fumerola1999-05-031-11/+11
* This Implements the mumbled about "Jail" feature.Poul-Henning Kamp1999-04-281-2/+2
* Nuke all the stupid ffs() stuff and use powerof2() instead.Mike Smith1999-02-041-2/+2
* Fix power-of-2 check for the TCB hash size.Mike Smith1999-02-041-2/+2
* Make TCBHASHSIZE a boot-time tunable as well, taking its value from theMike Smith1999-02-031-4/+14
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-071-2/+1
* The below patch helps to reduce the leakage of internal socket informationGuido van Rooij1998-11-151-2/+3
* RFC 1644 has the status "Experimental Protocol", which means:Poul-Henning Kamp1998-09-061-2/+2
* Re-implement tcp and ip fragment reassembly to not store pointers in theDoug Rabson1998-08-241-15/+12
* Convert socket structures to be type-stable and add a version number.Garrett Wollman1998-05-151-25/+92
* Fixed style bugs (mostly) in previous commit.Bruce Evans1998-03-281-5/+7
* Use the zone allocator to allocate inpcbs and tcpcbs. Each protocol createsGarrett Wollman1998-03-241-8/+46
* Improved connection establishment performance by doing local port lookups viaDavid Greenman1998-01-271-5/+5
* Make TCP_COMPAT_42 a new style option.Eivind Eklund1998-01-251-1/+2
* Fix an incredibly horrible bug in the ipfw codeJulian Elischer1997-12-191-1/+3
* Removed unused #includes.Bruce Evans1997-10-281-5/+1
* Make TCPDEBUG a new-style option.Joerg Wunsch1997-09-161-1/+3
* Fixed gratuitous ANSIisms.Bruce Evans1997-09-161-4/+5
* Reorganize elements of the inpcb struct to take better advantage ofDavid Greenman1997-04-031-2/+2
* Improved performance of hash algorithm while (hopefully) not reducingDavid Greenman1997-03-031-2/+2
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
* Fix the mechanism for choosing wehether to save the slow-start thresholdGarrett Wollman1997-02-141-2/+19
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
* Eliminate some more references to separate ip_v and ip_hl fields.Garrett Wollman1996-07-241-2/+4
* Better selection of initial retransmit timeout when no cachedGarrett Wollman1996-06-141-6/+4
* Correct formula for TCP RTO calculation. Also try to do a better job inGarrett Wollman1996-06-051-4/+2
* In tcp_respond(), check that ro->ro_rt is non-null before RTFREEingGarrett Wollman1996-03-271-2/+2
* Make sure tcp_respond() always calls ip_output() with a validGarrett Wollman1996-03-221-1/+8
* Move or add #include <queue.h> in preparation for upcoming struct socketDavid Greenman1996-03-111-2/+2
* Fix a nagging divide-by-zero error resulting from the MTU discovery codeGarrett Wollman1995-12-201-2/+20
* Uniformized pr_ctlinput protosw functions. The third arg is now `voidBruce Evans1995-12-161-3/+4
* Path MTU Discovery is now standard.Garrett Wollman1995-12-051-5/+5
* New style sysctl & staticize alot of stuff.Poul-Henning Kamp1995-11-141-7/+11
* Start adding new style sysctl here too.Poul-Henning Kamp1995-11-091-1/+11
* The ability to administratively change the MTU of an interface presentsGarrett Wollman1995-10-161-6/+2
* The additional checks involving sequence numbers in MTU discovery resendsGarrett Wollman1995-10-121-7/+5
* More MTU discovery: avoid over-retransmission if route changes in theGarrett Wollman1995-10-101-10/+9
* Finish 4.4-Lite-2 merge: randomize TCP initial sequence numbersGarrett Wollman1995-10-031-4/+4
* Correct spelling error in MTUDISC code.Garrett Wollman1995-09-221-2/+2
* Add support in TCP for Path MTU discovery. This is highly experimentalGarrett Wollman1995-09-201-3/+45
* Initial back-end support for IP MTU discovery, gated on MTUDISC. The supportGarrett Wollman1995-09-181-1/+29
* Keep track of the number of samples through the srtt filter so that weGarrett Wollman1995-06-291-9/+8