summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Abstract inpcb drop logic, previously just setting of INP_DROPPED in TCP,Robert Watson2006-04-251-3/+2
* Replace isn_mtx direct use with ISN_*() lock macros so that lockingRobert Watson2006-04-231-5/+9
* Introduce a new TCP mutex, isn_mtx, which protects the initial sequenceRobert Watson2006-04-221-3/+6
* Allow for nmbclusters and maxsockets to be increased via sysctl.Paul Saab2006-04-211-0/+11
* Add a tunable net.inet.tcp.maxtcptw, that allows to set a limitGleb Smirnoff2006-04-041-1/+8
* Before dereferencing intotw() when INP_TIMEWAIT, check for inp_ppcb beingRobert Watson2006-04-041-5/+15
* In TCP notify routines, check inpcb for INP_TIMEWAIT and INP_DROPPED.Robert Watson2006-04-031-66/+81
* Change inp_ppcb from caddr_t to void *, fix/remove associated relatedRobert Watson2006-04-031-7/+10
* Style tweaks: convert to ANSI from K&R function prototypes.Robert Watson2006-04-031-59/+26