summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* take static off tcp_mss_adv.dlg2007-05-271-2/+4
* When a partial ack is received check if congestion window is larger thanmichele2007-05-221-2/+7
* whitespace fixitojun2007-02-131-2/+2
* allow RST with th_seq incremented (seen from windows tcp clients); ok dhartmeimarkus2006-12-111-2/+3
* make the syncache code respect (inherit) the ttl from the listening sockethenning2006-12-051-5/+5
* do not re-generate the timestamp modulation offset for SYN-ACK retransmits;markus2006-10-311-3/+4
* implement IP_MINTTL socket option fo tcp socketshenning2006-10-111-1/+5
* mbuf use-after-free; ok henning, djm, bradmarkus2006-03-121-2/+6
* unbreak tcp window update (restore 4.4lite code); netbsd pr 13952;markus2006-02-261-4/+5
* allow RST if the th_seq matches rcv_nxt in case the RST follows themarkus2005-12-011-2/+3
* Only two `h' in threshold.miod2005-11-151-2/+2
* inherit sack_enable from the listen socket, this should allow connectionsmarkus2005-11-021-2/+2
* make pf use one mbuf tag instead of 6 distinct ones. use a little structhenning2005-10-171-5/+11
* don't accept SYN-only TCP options for established connections;markus2005-08-111-10/+19
* change the TCP reass queue from LIST to TAILQ;markus2005-08-021-32/+30
* implement PMTU checks frommarkus2005-06-301-1/+69
* csum -> csum_flagsbrad2005-04-251-4/+4
* add tcp sack stats, similar to freebsd; ok deraadtmarkus2005-04-051-2/+3
* make sure code and comment matchmarkus2005-03-121-4/+8
* from freebsd:markus2005-03-091-16/+10
* - check th_ack against snd_una/max; from Raja Mukerji via hugh@markus2005-03-041-17/+27
* 1. tcp_xmit_timer(): remove extra rtt decrement (t_rtttime is 0-basedmarkus2005-02-271-20/+20
* Make sure bogus values don't make their way into tcp_xmit_timer() calculations.mcbride2005-01-101-7/+17
* handle rtt < 0; markus okderaadt2004-12-301-1/+4
* fix indentmarkus2004-12-291-2/+2
* fix for race between invocation for timer and network inputmarkus2004-11-251-2/+20
* Modulate tcp_now by a random amount on a per-connection basis.mcbride2004-10-281-2/+8
* account for linkhdr size when choosing mbufs vs mbuf clustersderaadt2004-09-221-2/+2
* undo 1.148, otherwise we have assymmetric cwnd when entering ESTABLISHED:markus2004-07-161-1/+10
* remove #ifdef TUBAitojun2004-06-201-8/+1
* Calculate optp (pointer to beginning of TCP options) based on th, notdhartmei2004-06-141-2/+2
* factor out md5 code; ok+tests henning@, djm@, hshoexer@markus2004-06-081-128/+10
* simplify; ok henning, itojunmarkus2004-05-311-8/+4
* the tcp header might be in a different mbuf after pulldown();markus2004-05-271-3/+1
* use sa_family not inp; netbsd merge error; ok dhartmeimarkus2004-05-261-2/+2
* use 'mss' as lower limit, since 'ifp' might not be set; ok dhartmei@, henning@markus2004-05-211-5/+7
* Replace RSA-derived md5 code with code derived from Colin Plumb's PD version.millert2004-05-071-2/+2
* The tcp specific routing metrics are almost never used so reduce the routingclaudio2004-05-041-60/+4
* - allow the user to force the TCP mss below the fail-safe 216 with a lowfrantzen2004-04-261-3/+5
* add tcps_rcvacktooold; ok deraadtmarkus2004-04-201-2/+2
* Unbreak INET6less kernels.grange2004-04-151-2/+3
* allow TCP packet with IPv4 option (we have been dropping these).itojun2004-04-151-45/+15
* syn_cache_get: send RST instead of RST+ACK in response to ACK; ok deraadtmarkus2004-04-141-3/+2
* factor out dropafterack_ratelim code, use ratelimitmarkus2004-04-121-15/+25
* on in-window SYN, send back rate-limited ACK; ok dhartmei frantzen markusderaadt2004-04-041-3/+11
* typo in comment (fragment->segment); ok itojun@markus2004-03-171-3/+3
* limit total number of queued out-of-order packets to NMBCLUSTERS/2; ok mcbridemarkus2004-03-021-8/+20
* implement tcp_drain() similar to ip_drain(); ok mcbride@markus2004-02-271-1/+8
* make mss signed; avoids large mss if ifp==NULL; ok itojun@markus2004-02-111-2/+2
* check TF_SIGNATURE when calculating the mss; add TCPOLEN_SIGLEN andmarkus2004-02-101-2/+6