summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* ANSIfy function definitions.jsing2008-06-121-81/+26
* Fix type difference between function prototype and implementation.jsing2008-06-121-2/+2
* divert for ipv6; ok henning, pyrmarkus2008-05-151-2/+2
* divert packets to local socket without modifying the ip header;markus2008-05-091-2/+2
* remove tcp_drain code since it's not longer used; ok henning, feedback thibmarkus2008-05-061-8/+1
* when creating a response, use the correct TCP header instead ofmarkus2008-02-201-4/+6
* The TCP server has to recalculate the client's window size takenbluhm2008-02-111-3/+2
* TCP_COMPAT_42 was last used in 1997. Kill it.deraadt2007-11-271-6/+1
* typos; ok jmc@martynas2007-11-271-2/+2
* since thehenning2007-09-011-1/+2
* Drop the current random timestamps and the current ISN generationmarkus2007-06-151-18/+28
* there was code inside #if NPF > 0, but pf.h was not included, so it didhenning2007-06-111-7/+2
* apply the "skip ipsec if there are no flows" speedup diff to IPv6 too.henning2007-06-011-2/+2
* diffs are better if compilers see them firstderaadt2007-05-271-3/+3
* 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