aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
Commit message (Expand)AuthorAgeFilesLines
* The TCP code did not do sufficient checks on whether incoming packetsCrist J. Clark2002-02-251-7/+13
* o Move NTOHL() and associated macros into <sys/param.h>. These areMike Barcroft2002-02-181-11/+11
* o Spelling fix in comment: tcp_ouput -> tcp_outputRobert Watson2002-01-041-1/+1
* Fix up tabs in comments.Jonathan Lemon2001-12-131-4/+4
* Fix a bug with transmitter restart after receiving a 0 window. TheMatthew Dillon2001-12-021-2/+7
* Introduce a syncache, which enables FreeBSD to withstand a SYN floodJonathan Lemon2001-11-221-470/+261
* Move initialization of snd_recover into tcp_sendseqinit().Jonathan Lemon2001-11-211-1/+0
* KSE Milestone 2Julian Elischer2001-09-121-2/+2
* Patches from Keiichi SHIMA <keiichi@iij.ad.jp>Julian Elischer2001-09-031-3/+3
* when newreno is turned on, if dupacks = 1 or dupacks = 2 andJayanth Vijayaraghavan2001-08-291-0/+2
* Correct a typo in a comment: FIN_WAIT2 -> FIN_WAIT_2Dima Dorfman2001-08-231-1/+1
* Much delayed but now present: RFC 1948 style sequence numbersMike Silbersack2001-08-221-3/+2
* Temporary feature: Runtime tuneable tcp initial sequence numberMike Silbersack2001-07-081-2/+2
* Add netstat(1) knob to reset net.inet.{ip|icmp|tcp|udp|igmp}.stats.Ruslan Ermilov2001-06-231-1/+1
* Eliminate the allocation of a tcp template structure for eachMike Silbersack2001-06-231-6/+0
* Sync with recent KAME.Hajimu UMEMOTO2001-06-111-30/+79
* Silby's take one on increasing FreeBSD's resistance to SYN floods:Jesper Skriver2001-06-061-1/+14
* Inline TCP_REASS() in the single location where it's used,Jesper Skriver2001-05-291-33/+30
* properly delay acks in half-closed TCP connectionsJesper Skriver2001-05-291-1/+1
* Say goodbye to TCP_COMPAT_42Jesper Skriver2001-04-201-9/+0
* Randomize the TCP initial sequence numbers more thoroughly.Kris Kennaway2001-04-171-2/+11
* Axe TCP_RESTRICT_RST. It was never a particularly good idea except for a fewDag-Erling Smørgrav2001-03-191-12/+1
* Do not delay a new ack if there already is a delayed ack pending on theJonathan Lemon2001-02-251-5/+11
* Clean up RST ratelimiting. Previously, ratelimiting occured before testsBosko Milekic2001-02-111-33/+48
* Correct a comment.Garrett Wollman2001-01-241-1/+1
* Change the following:Bosko Milekic2000-12-151-2/+8
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* tp->snd_recover is part of the New Reno recovery algorithm, and shouldJonathan Lemon2000-11-041-1/+6
* When a connection is being dropped due to a listen queue overflow,Jayanth Vijayaraghavan2000-07-211-0/+8
* be more cautious about tcp option length field. drop bogus ones earlier.Jun-ichiro itojun Hagino2000-07-091-1/+3
* sync with kame tree as of july00. tons of bug fixes/improvements.Jun-ichiro itojun Hagino2000-07-041-11/+7
* sysctl'ize ICMP_BANDLIM and ICMP_BANDLIM_SUPPRESS_OUTPUT.Dan Moschuk2000-05-221-4/+2
* snd_cwnd was updated twice in the tcp_newreno function.Jayanth Vijayaraghavan2000-05-181-1/+0
* Sigh, fix a rookie patch merge error.Jayanth Vijayaraghavan2000-05-171-3/+0
* snd_una was being updated incorrectly, this resulted in the newrenoJayanth Vijayaraghavan2000-05-161-3/+8
* Implement TCP NewReno, as documented in RFC 2582. This allowsJonathan Lemon2000-05-061-6/+73
* ND6_HINT() should not be called unless the connection status isMunechika SUMIKAWA2000-04-171-1/+0
* Support per socket based IPv4 mapped IPv6 addr enable/disable control.Yoshinobu Inoue2000-04-011-1/+1
* Add support for offloading IP/TCP/UDP checksums to NIC hardware whichJonathan Lemon2000-03-271-10/+22
* IPv6 6to4 support.Yoshinobu Inoue2000-03-111-1/+1
* Mitigate the stream.c attacksWarner Losh2000-01-281-16/+32
* Avoid m_len and m_pkthdr.len inconsistency when changing m_lenYoshinobu Inoue2000-01-251-0/+2
* Fixed the problem that IPsec connection hangs when bigger data is sent.Yoshinobu Inoue2000-01-151-0/+4
* add a comment for some possible? IPv4 option processing.Yoshinobu Inoue2000-01-131-0/+1
* tcp updates to support IPv6.Yoshinobu Inoue2000-01-091-271/+678
* IPSEC support in the kernel.Yoshinobu Inoue1999-12-221-2/+3
* Use SEQ_* macros for comparing sequence space numbers.Jonathan Lemon1999-12-141-2/+2
* According to RFC 793, a reset should be honored if the sequence numberJonathan Lemon1999-12-111-7/+6
* udp IPv6 support, IPv6/IPv4 tunneling support in kernel,Yoshinobu Inoue1999-12-071-4/+5
* Implement RLIMIT_SBSIZE in the kernel. This is a per-uid sockbuf totalBrian Feldman1999-10-091-2/+2