summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
AgeCommit message (Expand)Author
2011-05-13Revert the pf->socket linking diff.Owain Ainsworth
2011-05-04Clean up gotos for listening sockets to make it obvious when packetsBret Lambert
2011-04-29In certain failure cases, a RST would be sent out on rdomain 0,Bret Lambert
2011-04-28Make in_broadcast() rdomain aware. Mostly mechanical change.Claudio Jeker
2011-04-24Double link between pf states and sockets. Henning has alreadyAlexander Bluhm
2011-04-12put the accepted socket of a diverted connection into the routing domainMike Belopuhov
2011-04-05Replace if/else ladder with much more legible switch statement forBret Lambert
2011-04-04turn some macros into functions; saves 1400+ bytes from the kernelBret Lambert
2011-04-04Instead of calling tcp_reass (tcp reassembly) with magic argumentsBret Lambert
2011-04-04change an if statement to a switch to reduce eye bleedageBret Lambert
2011-01-07Add socket option SO_SPLICE to splice together two TCP sockets.Alexander Bluhm
2010-09-29Initialize the ts_recent (received timestamp) field in the newly createdClaudio Jeker
2010-09-29It is not allowed to recalculate the window scale after the initial SYN.Claudio Jeker
2010-09-29Do not delay ACKs on connections using loopback interfaces. There is noClaudio Jeker
2010-09-24TCP send and recv buffer scaling.Claudio Jeker
2010-07-20Switch some obvious network stack MAC comparisons from bcmp() toMatthew Dempsky
2010-07-09Add support for using IPsec in multiple rdomains.Reyk Floeter
2010-07-03Fix the naming of interfaces and variables for rdomains and rtablesPhilip Guenthe
2010-03-11unbreak the build with a custom kernel config including "pseudo-deviceStuart Henderson
2010-01-15Replace pool_get() + bzero() with pool_get(..., PR_ZERO).Charles Longeau
2009-11-13Extend the protosw pr_ctlinput function to include the rdomain. This isClaudio Jeker
2009-11-03rtables are stacked on rdomains (it is possible to have multiple routingClaudio Jeker
2009-08-20fix indentationAlexander Bluhm
2009-08-10sockets created via a listening socket lose the rdomain and fail to workClaudio Jeker
2009-06-05Initial support for routing domains. This allows to bind interfaces toClaudio Jeker
2009-06-03add the basic infrastructure to take advantage of TCP and UDP receiveChristian Weisgerber
2008-11-02Remove the M_ANYCAST6 mbuf flag by doing the detection all in ip6_input().Claudio Jeker
2008-10-10back out previous change. Another panic, not as frequent, andDavid Hill
2008-10-10Comment out statekey code to stop 'panic: soreceive 3', whichDavid Hill
2008-09-09The pf state to pcb linking code change didn't account for theMarco Pfatschbacher
2008-07-03link pf state keys to tcp pcbs and vice versa.Henning Brauer
2008-06-14Include "faith.h" in order to get NFAITH. Also clean up NFAITH conditionalsJoel Sing
2008-06-12Remove some crazy #if mess.Joel Sing
2008-06-12ANSIfy function definitions.Joel Sing
2008-06-12Fix type difference between function prototype and implementation.Joel Sing
2008-05-15divert for ipv6; ok henning, pyrMarkus Friedl
2008-05-09divert packets to local socket without modifying the ip header;Markus Friedl
2008-05-06remove tcp_drain code since it's not longer used; ok henning, feedback thibMarkus Friedl
2008-02-20when creating a response, use the correct TCP header instead ofMarkus Friedl
2008-02-11The TCP server has to recalculate the client's window size takenAlexander Bluhm
2007-11-27TCP_COMPAT_42 was last used in 1997. Kill it.Theo de Raadt
2007-11-27typos; ok jmc@Martynas Venckus
2007-09-01since theHenning Brauer
2007-06-15Drop the current random timestamps and the current ISN generationMarkus Friedl
2007-06-11there was code inside #if NPF > 0, but pf.h was not included, so it didHenning Brauer
2007-06-01apply the "skip ipsec if there are no flows" speedup diff to IPv6 too.Henning Brauer
2007-05-27diffs are better if compilers see them firstTheo de Raadt
2007-05-27take static off tcp_mss_adv.David Gwynne
2007-05-22When a partial ack is received check if congestion window is larger thanMichele Marchetto
2007-02-13whitespace fixJun-ichiro itojun Hagino