summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* take RFC2460 section 5 last paragraph into consideration when we compute MSSitojun2004-02-051-5/+14
* !sack_disable -> sack_enable; ok deraadt@markus2004-01-311-17/+16
* reset TCPT_KEEP to tcp_keepidle when switching to ESTABLISHED;markus2004-01-291-2/+4
* turn off TF_SIGNATURE on the listen socket if there is no matching SA.markus2004-01-291-10/+23
* support for RFC3390 (Increasing TCP's Initial Window); ok deraadt, itojunmarkus2004-01-291-9/+10
* don't increase the cwnd on syn-ack; ok itojun@, deraadt@markus2004-01-291-10/+1
* add gettdbbysrcdst(), just like gettdb(), but compares tdb_src as well; ok mcbride@markus2004-01-221-19/+30
* es tanzt das KNFmarkus2004-01-151-55/+54
* move call to tcp_mss_update() from syn_cache_add() to syn_cache_get(),markus2004-01-151-12/+4
* syncache+ipv6 support for TCP_SIGNATURE; with itojun; ok deraadtmarkus2004-01-141-33/+153
* bring back the old TCP_SIGNATURE code from tcp_input.c rev 1.45markus2004-01-131-8/+148
* pass pcb and not socket to ip_output; #ifdef SACK; ok itojun@markus2004-01-131-13/+7
* decrease min mss to (256 - 40); ok deraadtmarkus2004-01-091-3/+3
* crank mss limit from 64 to 256; ok itojun@, dhartmei@markus2004-01-071-3/+3
* cleanup obsolete comment from NRL code. markus okitojun2004-01-071-50/+32
* import netbsd's version of David Borman's syncache codemarkus2004-01-061-385/+1289
* check for multicast early, remove redundant checks; ok itojun, mcbridemarkus2003-12-211-34/+20
* switch to CIRCLEQ_FOREACH_REVERSE in tcpdropoldhalfopen() andmarkus2003-12-081-9/+5
* Mbuf tag tcp and udp packets which are translated to localhost, andmcbride2003-12-081-3/+5
* add in(6)_pcblookup_listen() and replace all calls to in_pcblookup()markus2003-11-041-6/+5
* use random number generator to generate IPv6 fragment ID/flowlabel.itojun2003-10-011-5/+3
* do not flip ip_len/ip_off in netinet stack. deraadt ok.itojun2003-07-091-5/+1
* backout following:itojun2003-06-091-87/+139
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
* use IN6_LINKMTU for IPv6 link MTU. sync w/kameitojun2003-05-291-1/+10
* use m_pulldown not m_pullup2. fix some bugs in IPv6 tcp_trace().itojun2003-05-291-139/+87
* Bad switch condition used for SO_DEBUG, ok itojun@dhartmei2003-05-191-2/+2
* Fix logic error introduced when importing a Stevens' bug fix in r1.20;miod2003-04-291-2/+2
* Fix an mbuf leak, where each incoming IPv6 TCP connection (to a listeningdhartmei2003-02-141-2/+2
* fix pointer signedness mixup.itojun2002-09-111-3/+3
* never append data to shutdown(s, SHUT_RD) socket. can lead to unexpecteditojun2002-09-051-5/+13
* be consistent with other KAME source, use "ip6" for ip6_hdr, not "ipv6".itojun2002-08-191-22/+22
* merge in IPv6 deprecated address handling from KAME.itojun2002-08-191-1/+43
* redo socketbuf speedup.provos2002-08-081-4/+4
* backout the tree break. ok pb@, art@todd2002-08-081-4/+4
* socket buf speedup from thorpej@netbsd, okay art@ ericj@:provos2002-08-081-4/+4
* whitespaceitojun2002-06-091-119/+119
* avoid is_ipv6 construct. a step towards IPv4-less kernelitojun2002-06-071-5/+3
* no need for IPv4 mapped addr supportitojun2002-06-071-14/+6
* missing bzero! - now linklocal tcp works correctlyitojun2002-06-071-1/+3
* Socket-specific IPsec policy.angelos2002-05-311-28/+23
* attach nd_ifinfo structure to if_afdata.itojun2002-05-291-2/+2
* bring in ECN support from KAME.kjc2002-05-161-4/+128
* drop TCP connections to broadcast address.itojun2002-03-191-6/+5
* Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do thingsmillert2002-03-151-6/+1
* check tiflags instead of th as th might point to freed memory; pointed outprovos2002-03-091-25/+25
* use timeout(9) to schedule TCP timers. this avoid traversing allprovos2002-03-081-13/+15
* disable immediate ack on TH_PUSH. make behaviour sysctl tuneable.provos2002-03-021-9/+20
* remove tcp_fasttimo and convert delayed acks to the timeout(9) API instead.provos2002-03-011-3/+3
* allocate tcp reassembly queue via pool; based on netbsd; okay art@ angelos@provos2002-01-241-5/+5