summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
Commit message (Expand)AuthorAgeFilesLines
* Add FBSDID to all files in netinet so that people can moreMike Silbersack2007-10-071-1/+3
* Disable TCP syncache debug logging by default. While useful in debuggingRobert Watson2007-10-051-1/+1
* Two changes:Mike Silbersack2007-09-241-12/+12
* Back out tcp_timer.c:1.93 and associated changes that reimplemented the manyRobert Watson2007-09-071-12/+12
* Use the sequence number comparison macro to compareQing Li2007-08-161-2/+2
* Change TCPTV_MIN to be independent of HZ. While it was documented toPeter Wemm2007-07-311-0/+2
* Provide a sysctl to toggle reporting of TCP debug logging:Andre Oppermann2007-07-281-0/+8
* Replace references to NET_CALLOUT_MPSAFE with CALLOUT_MPSAFE, and removeRobert Watson2007-07-281-6/+2
* Export the contents of the syncache to netstat.Mike Silbersack2007-07-271-5/+13
* Fix a second warning, introduced by my last "fix". I committed the wrongPeter Wemm2007-07-051-2/+2
* Fix cast-qualifiers warning when INET6 is not presentPeter Wemm2007-07-051-1/+1
* Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSECGeorge V. Neville-Neil2007-07-031-4/+4
* Commit IPv6 support for FAST_IPSEC to the tree.George V. Neville-Neil2007-07-011-11/+2
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-121-4/+2
* Don't assign sp to the value of s when we're about to assign it instead toRobert Watson2007-05-271-1/+1
* In tcp_log_addrs():Andre Oppermann2007-05-231-5/+7
* Add tcp_log_addrs() function to generate and standardized TCP log lineAndre Oppermann2007-05-181-0/+89
* Move TIME_WAIT related functions and timer handling from filesAndre Oppermann2007-05-161-1/+0
* Complete the (mechanical) move of the TCP reassembly and timewaitAndre Oppermann2007-05-131-352/+2
* Make the TCP timer callout obtain Giant if the network stack is markedAndre Oppermann2007-05-111-2/+6
* Add the timestamp offset to struct tcptw so we can generate properAndre Oppermann2007-05-111-3/+6
* Move universally to ANSI C function declarations, with relativelyRobert Watson2007-05-101-3/+3
* When setting up timewait state for a TCP connection, don't hold theRobert Watson2007-05-071-1/+1
* Use existing TF_SACK_PERMIT flag in struct tcpcb t_flags field instead ofAndre Oppermann2007-05-061-2/+3
* Rename some fields of struct inpcbinfo to have the ipi_ prefix,Robert Watson2007-04-301-7/+8
* Make tcp_twrespond() use tcp_addoptions() instead of a home grown version.Andre Oppermann2007-04-181-11/+6
* Change the TCP timer system from using the callout system five timesAndre Oppermann2007-04-111-15/+14
* Retire unused TCP_SACK_DEBUG.Andre Oppermann2007-04-041-1/+0
* ANSIfy function declarations and remove register keywords for variables.Andre Oppermann2007-03-211-4/+4
* Remove tcp_minmssoverload DoS detection logic. The problem it tried toAndre Oppermann2007-03-211-12/+0
* Match up SYSCTL declaration style.Andre Oppermann2007-03-191-12/+14
* Remove unused and #if 0'd net.inet.tcp.tcp_rttdflt sysctl.Robert Watson2007-03-161-6/+0
* Reap FIN_WAIT_2 connections marked SOCANTRCVMORE faster. This mitigateMohan Srinivasan2007-02-261-0/+1
* Whitespace fix and remove an extra cast.John Baldwin2006-12-301-1/+2
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-2/+5
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* o Convert w/spaces to tabs in the previous commit.Maxim Konovalov2006-09-291-3/+3
* Rather than autoscaling the number of TIME_WAIT sockets to maxsockets / 5,Mike Silbersack2006-09-291-8/+24
* Add a sysctl net.inet.tcp.nolocaltimewait that allows to suppressGleb Smirnoff2006-09-081-4/+15
* Back when we had T/TCP support, we used to apply differentRuslan Ermilov2006-09-071-3/+2
* First step of TSO (TCP segmentation offload) support in our network stack.Andre Oppermann2006-09-061-5/+19
* o Backout rev. 1.125 of in_pcb.c. It appeared to behave extremelyGleb Smirnoff2006-09-061-4/+3
* Finally fix rev. 1.256Gleb Smirnoff2006-09-051-3/+4
* Remove extra parenthesis in last commit.Gleb Smirnoff2006-09-051-2/+2
* - Make net.inet.tcp.maxtcptw modifiable at run time.Gleb Smirnoff2006-09-051-7/+28
* Fix for a bug that causes the computation of "len" in tcp_output() toMohan Srinivasan2006-08-261-0/+4
* Fixes an edge case bug in timewait handling where ticks rolling over causingMohan Srinivasan2006-08-111-1/+1
* Move soisdisconnected() in tcp_discardcb() to one of its calling contexts,Robert Watson2006-08-021-12/+7
* Change semantics of socket close and detach. Add a new protocol switchRobert Watson2006-07-211-37/+12
* Fix race conditions on enumerating pcb lists by moving the initializationStephan Uphoff2006-07-181-2/+14