summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_output.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add a second KASSERT checking for len >= 0 in the tcp output path.Bjoern A. Zeeb2008-09-071-1/+7
* Commit step 1 of the vimage project, (network stack)Bjoern A. Zeeb2008-08-171-27/+28
* MFp4 (//depot/projects/tcpecn/):Rui Paulo2008-07-311-0/+43
* Fix commment in typo.Rui Paulo2008-07-151-1/+1
* Convert pcbinfo and inpcb mutexes to rwlocks, and modify macros toRobert Watson2008-04-171-1/+1
* Remove TCP options ordering assumptions in tcp_addoptions(). OrderingAndre Oppermann2008-04-071-1/+11
* Remove now unnecessary comment.Andre Oppermann2008-04-071-2/+0
* Use #defines for TCP options padding after EOL to be consistent.Andre Oppermann2008-04-071-2/+2
* Padding after EOL option must be zeros according to RFC793 butBjoern A. Zeeb2008-03-091-2/+10
* Centralize and correct computation of TCP-MD5 signature offset withinBjoern A. Zeeb2007-11-301-8/+3
* Let opt be an array. Though &opt[0] == opt == &opt, &opt is highlyBjoern A. Zeeb2007-11-281-1/+1
* Make TSO work with IPSEC compiled into the kernel.Bjoern A. Zeeb2007-11-211-3/+16
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-1/+1
* Add FBSDID to all files in netinet so that people can moreMike Silbersack2007-10-071-1/+3
* Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSECGeorge V. Neville-Neil2007-07-031-3/+3
* Commit IPv6 support for FAST_IPSEC to the tree.George V. Neville-Neil2007-07-011-6/+1
* Make the handling of the tcp window explicit for the SYN_SENT caseAndre Oppermann2007-06-091-4/+10
* Don't send pure window updates when the peer has closed the connectionAndre Oppermann2007-06-091-1/+4
* Fix statistical accounting for bytes and packets during sack retransmits.John Baldwin2007-05-181-1/+1
* Fix an incorrect replace of a timer reference made during the TCP timerAndre Oppermann2007-05-101-1/+1
* Use existing TF_SACK_PERMIT flag in struct tcpcb t_flags field instead ofAndre Oppermann2007-05-061-4/+6
* o Remove unused and redundant TCP option definitionsAndre Oppermann2007-04-201-4/+4
* Change the TCP timer system from using the callout system five timesAndre Oppermann2007-04-111-28/+25
* Retire unused TCP_SACK_DEBUG.Andre Oppermann2007-04-041-1/+0
* ANSIfy function declarations and remove register keywords for variables.Andre Oppermann2007-03-211-2/+1
* Subtract optlen in the maximum length check for TSO and finally avoidAndre Oppermann2007-03-211-1/+1
* Match up SYSCTL_INT declarations in style.Andre Oppermann2007-03-191-2/+2
* Maintain a pointer and offset pair into the socket buffer mbuf chain toAndre Oppermann2007-03-191-3/+13
* Consolidate insertion of TCP options into a segment from within tcp_output()Andre Oppermann2007-03-151-145/+198
* Prevent TSO mbuf chain from overflowing a few bytes by subtracting theAndre Oppermann2007-03-011-2/+3
* Add EHOSTDOWN and ENETUNREACH to the list of soft errors, that shouldn'tGleb Smirnoff2007-02-281-0/+2
* Toss the code, that handles errors from ip_output(), to make it moreGleb Smirnoff2007-02-281-30/+26
* Auto sizing TCP socket buffers.Andre Oppermann2007-02-011-4/+70
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* When tcp_output() receives an error upon sending a packet it reverts partsAndre Oppermann2006-09-281-2/+15
* When doing TSO correctly do the check to prevent a maximum sized IP packetAndre Oppermann2006-09-281-1/+1
* When doing TSO subtract hdrlen from TCP_MAXWIN to prevent ip->ip_lenAndre Oppermann2006-09-151-5/+7
* Rewrite of TCP syncookies to remove locking requirements and to enhanceAndre Oppermann2006-09-131-1/+1
* Second step of TSO (TCP segmentation offload) support in our network stack.Andre Oppermann2006-09-071-15/+73
* This patch fixes the problem where the current TCP code can not handleQing Li2006-02-231-1/+2