summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_output.c
Commit message (Expand)AuthorAgeFilesLines
* Implement the ip, tcp, and udp DTrace providers. The probe definitions useMark Johnston2013-08-251-0/+20
* Allow drivers to specify a maximum TSO length in bytes if they areAndre Oppermann2013-06-031-4/+5
* Fix tcp_output() so that tcpcb is updated in the same manner when anGleb Smirnoff2013-04-111-70/+74
* - Replace compat macros with function calls.Gleb Smirnoff2013-03-161-1/+1
* - Use m_getcl() instead of hand allocating.Gleb Smirnoff2013-03-151-12/+8
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-051-3/+3
* Fix typo; s/ouput/outputKevin Lo2012-11-071-1/+1
* Forced commit to provide the correct commit message to r242251:Andre Oppermann2012-10-291-3/+3
* Prevent a flurry of forced window updates when an application isAndre Oppermann2012-10-281-11/+29
* When SYN or SYN/ACK had to be retransmitted RFC5681 requires us toAndre Oppermann2012-10-281-2/+6
* Switch the entire IPv4 stack to keep the IP packet headerGleb Smirnoff2012-10-221-2/+2
* If ip_output() returns EMSGSIZE to tcp_output(), then the latter callsGleb Smirnoff2012-07-161-16/+27
* - Updated TOE support in the kernel.Navdeep Parhar2012-06-191-0/+8
* It turns out that too many drivers are not only parsing the L2/3/4Bjoern A. Zeeb2012-05-281-1/+2
* MFp4 bz_ipv6_fast:Bjoern A. Zeeb2012-05-251-6/+11
* When we receive an ICMP unreach need fragmentation datagram, we takeGleb Smirnoff2012-04-161-1/+1
* Fix PAWS (Protect Against Wrapped Sequence numbers) in cases whenBjoern A. Zeeb2012-02-151-2/+2
* Restore sysctl names for tcp_sendspace/tcp_recvspace.Sergey Kandaurov2011-11-021-1/+1
* Move the tcp_sendspace and tcp_recvspace sysctl's fromAndre Oppermann2011-10-161-0/+5
* Remove the ss_fltsz and ss_fltsz_local sysctl's which haveAndre Oppermann2011-10-161-10/+0
* Increase the defaults for the maximum socket buffer limit,Bjoern A. Zeeb2011-08-251-1/+1
* Remove #ifdef notyet code dating back to 4.3BSD Net/2 (and possibly earlier).Colin Percival2011-07-051-18/+1
* Fix a KASSERT from r212803 to check the correct length also in case ofBjoern A. Zeeb2011-06-201-1/+8
* Advance the advertised window (rcv_adv) to the currently received dataJohn Baldwin2011-06-131-1/+1
* Handle a rare edge case with nearly full TCP receive buffers. If a TCPJohn Baldwin2011-05-021-5/+12
* Make the TCP code compile without INET. Sort #includes and add #ifdef INETs.Bjoern A. Zeeb2011-04-301-5/+10
* TCP reuses t_rxtshift to determine the backoff timer used for both theJohn Baldwin2011-04-291-0/+1
* When checking to see if a window update should be sent to the remote peer,John Baldwin2011-04-181-0/+8
* - Add some helper hook points to the TCP stack. The hooks allow Khelp modules toLawrence Stewart2010-12-281-0/+28
* - Reinstantiate the after_idle hook call in tcp_output(), which got lostLawrence Stewart2010-12-021-32/+3
* Add new, per connection, statistics for TCP, including:George V. Neville-Neil2010-11-171-2/+4
* This commit marks the first formal contribution of the "Five New TCP CongestionLawrence Stewart2010-11-121-8/+16
* Rearrange the TSO code to make it more readable and to clearlyAndre Oppermann2010-09-171-33/+49
* Remove the TCP inflight bandwidth limiter as announced in r211315Andre Oppermann2010-09-161-1/+0
* If a TCP connection has been idle for one retransmit timeout or moreAndre Oppermann2010-08-181-15/+26
* Fix the interaction between 'ICMP fragmentation needed' MTU updates,Andre Oppermann2010-08-151-1/+3
* When using TSO and sending more than TCP_MAXWIN sendalot is setAndre Oppermann2010-08-141-2/+5
* MFP4: @176978-176982, 176984, 176990-176994, 177441Bjoern A. Zeeb2010-04-291-9/+12
* Don't clear other flags (e.g. CSUM_TCP) when setting CSUM_TSO. This wasKenneth D. Merry2010-04-191-1/+1
* Several years ago a feature was added to TCP that casued soreceive() toJohn Baldwin2009-11-061-1/+1
* Merge the remainder of kern_vimage.c and vimage.h into vnet.c andRobert Watson2009-08-011-1/+1
* Build on Jeff Roberson's linker-set based dynamic per-CPU allocatorRobert Watson2009-07-141-39/+37
* Trim extra sets of ()'s.John Baldwin2009-06-161-1/+1
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-1/+0
* Update stats in struct tcpstat using two new macros, TCPSTAT_ADD() andRobert Watson2009-04-111-16/+16
* Rather than using hidden includes (with cicular dependencies),Bjoern A. Zeeb2008-12-021-0/+2
* Replace most INP_CHECK_SOCKAF() uses checking if it is anBjoern A. Zeeb2008-11-271-1/+1
* Change the initialization methodology for global variables scheduledMarko Zec2008-11-191-8/+11
* Step 1.5 of importing the network stack virtualization infrastructureMarko Zec2008-10-021-16/+23
* Implement IPv6 support for TCP MD5 Signature Option (RFC 2385)Bjoern A. Zeeb2008-09-131-8/+1