summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_subr.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* "struct pkthdr" holds a routing table ID, not a routing domain one.mpi2014-04-141-4/+4
* Remove the number of in6_var.h inclusions by moving some functions andmpi2013-10-241-3/+1
* Remove the number of in_var.h inclusions by moving some functions andmpi2013-10-231-2/+1
* Sprinkle a lot more IPv6 routing domains support in the kernel.phessler2013-10-211-11/+6
* Put a large chunk of the IPv6 rdomain support in-tree.phessler2013-10-201-5/+5
* make in_proto_cksum_out not rely on the pseudo header checksum to behenning2013-10-191-5/+2
* Pass the routing domain to IPv6 pr_ctlinput() like in IPv4.bluhm2013-06-011-5/+2
* The function rip6_ctlinput() claims that sa6_src is constant tobluhm2013-05-311-6/+6
* Remove various external variable declaration from sources files andmpi2013-04-101-6/+3
* Use macros sotoinpcb() and intotcpcb() instead of casts. Use NULLbluhm2013-04-021-4/+4
* code that calls timeout functions should include timeout.htedu2013-03-281-1/+2
* no need for a lot of code to include proc.htedu2013-03-281-2/+1
* change the malloc(9) flags from M_DONTWAIT to M_NOWAIT; OK millert@gsoares2012-12-281-2/+2
* Increase TCP's initial window to 10 * MSS or 14600 bytes as proposed inclaudio2012-03-101-2/+2
* for key material that is being being discarded, convert bzero() toderaadt2011-01-111-2/+2
* Fix the naming of interfaces and variables for rdomains and rtablesguenther2010-07-031-16/+7
* Replace pool_get() + bzero() with pool_get(..., PR_ZERO).chl2010-01-151-3/+2
* Extend the protosw pr_ctlinput function to include the rdomain. This isclaudio2009-11-131-7/+15
* rtables are stacked on rdomains (it is possible to have multiple routingclaudio2009-11-031-3/+2
* sockets created via a listening socket lose the rdomain and fail to workclaudio2009-08-101-3/+3
* Initial support for routing domains. This allows to bind interfaces toclaudio2009-06-051-4/+7
* rename arc4random_bytes => arc4random_buf to match libc's nicer name;djm2008-06-091-2/+2
* remove tcp_drain code since it's not longer used; ok henning, feedback thibmarkus2008-05-061-22/+1
* remove old unused TCP isn code; ok henning, dhartmei, mcbridemarkus2008-02-201-48/+1
* when creating a response, use the correct TCP header instead ofmarkus2008-02-201-64/+52
* TCP_COMPAT_42 was last used in 1997. Kill it.deraadt2007-11-271-5/+1
* arc4random_bytes() is the preferred interface for generating nonces;djm2007-09-181-2/+2
* since thehenning2007-09-011-1/+2
* merge tcp_set_iss() and tcp_set_tsm(); ok mcbride, djm (on earlier version)markus2007-06-251-46/+13
* Drop the current random timestamps and the current ISN generationmarkus2007-06-151-7/+71
* apply the "skip ipsec if there are no flows" speedup diff to IPv6 too.henning2007-06-011-2/+3
* tcp_iss usage is ifdef TCP_COMPAT_42, so the variable decl can be tooderaadt2007-05-091-1/+3
* variables used by #ifdef code should be inside #ifdef tooderaadt2007-05-081-1/+5
* With the exception of two other small uncommited diffs this movesbrad2006-03-041-2/+2
* Enable RFC3390 by default and remove a few compile time options whichbrad2005-09-281-24/+5
* change the TCP reass queue from LIST to TAILQ;markus2005-08-021-7/+7
* implement PMTU checks frommarkus2005-06-301-3/+40
* Ignore ICMP Source Quench messages meant for TCP connections. (Details infgont2005-05-241-17/+11
* - check th_ack against snd_una/max; from Raja Mukerji via hugh@markus2005-03-041-1/+5
* 1. tcp_xmit_timer(): remove extra rtt decrement (t_rtttime is 0-basedmarkus2005-02-271-2/+3
* Make sure bogus values don't make their way into tcp_xmit_timer() calculations.mcbride2005-01-101-2/+2
* fix for race between invocation for timer and network inputmarkus2004-11-251-3/+18
* Modulate tcp_now by a random amount on a per-connection basis.mcbride2004-10-281-2/+1
* verify th_seq in icmp errors; report Fernando Gont; ok mcbride@, dhartmei@markus2004-08-101-31/+53
* First step towards more sane time handling in the kernel -- this changestholo2004-06-211-3/+3
* factor out md5 code; ok+tests henning@, djm@, hshoexer@markus2004-06-081-1/+76
* 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-111/+1
* - allow the user to force the TCP mss below the fail-safe 216 with a lowfrantzen2004-04-261-8/+10
* limit total number of queued out-of-order packets to NMBCLUSTERS/2; ok mcbridemarkus2004-03-021-4/+8