summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
AgeCommit message (Expand)Author
2021-12-01Let ipsp_spd_lookup() return an error instead of a TDB. The TDBAlexander Bluhm
2021-11-25move label to fix RAMDISKTheo de Raadt
2021-11-25Implement reference counting for IPsec tdbs. Not all cases areAlexander Bluhm
2021-08-09During unidirectional data transmission, a TCP connection may stall.Alexander Bluhm
2021-08-09Fix white spaces.Alexander Bluhm
2021-04-16Turn on the direct ACK on every other segment.Alexander Bluhm
2021-03-10spellingJonathan Gray
2021-02-03Turns off the direct ACK on every other segmentjan
2020-06-19Break a glass ceiling on cwnd due to integer division during congestionRichard Procter
2019-12-06Checking the IPsec policy is expensive. Check only when IPsec is used.tobhe
2019-11-29Change the default security level for incoming IPsec flows fromtobhe
2019-11-11Prevent underflows in tp->snd_wnd if the remote side ACKs more thanAlexander Bluhm
2019-07-12Count the number of TCP SACK options that were dropped due to theAlexander Bluhm
2019-07-10Received SACK options are managed by a linked list at the TCP socket.Alexander Bluhm
2018-09-17Do not acknowledge a received ack-only tcp packet that we would drop due tofriehm
2018-07-23Coverity CID 1470233 complainst that the m != NULL check inAlexander Bluhm
2018-06-14Assert that the INP_IPV6 in in6_pcbconnect() is correct. Just callAlexander Bluhm
2018-06-11The output from tcp debug sockets was incomplete. After detach tpAlexander Bluhm
2018-05-08Historically there were slow and fast tcp timeouts. That is whyAlexander Bluhm
2017-12-04Make divert lookup similar for all socket types. If PF_TAG_DIVERTEDAlexander Bluhm
2017-12-01Simplify the reverse PCB lookup logic. The PF_TAG_TRANSLATE_LOCALHOSTAlexander Bluhm
2017-11-20Sprinkle some NET_ASSERT_LOCKED(), const and co to prepare runningMartin Pieuchot
2017-11-08The TF_BLOCKOUTPUT flag is set around all sorwakeup() and sowwakeup()Alexander Bluhm
2017-10-25Remove the TCP_FACK option and associated #if{,n}def code.job
2017-10-24Refactor handling of partial TCP acknowledgementsMike Belopuhov
2017-10-22Unconditionally enable TCP selective acknowledgements (SACK)Mike Belopuhov
2017-08-11Remove NET_LOCK()'s argument.Martin Pieuchot
2017-06-26Assert that the corresponding socket is locked when manipulating socketMartin Pieuchot
2017-05-18Merge the content of <netinet/tcpip.h> and <netinet6/tcpipv6.h> inMartin Pieuchot
2017-05-06Checking for IPv4 mapped addreses and dropping the packet is doneAlexander Bluhm
2017-05-04If m is not a continuous mbuf cluster, m_pullup() in pr_input mayAlexander Bluhm
2017-05-03Back out rev 1.185 (which made the code match the comment) andTodd C. Miller
2017-04-19Use the rt_rmx defines that hide the struct rt_kmetrics indirection.Alexander Bluhm
2017-04-17Use the address family passed down with pr_input to simplifyAlexander Bluhm
2017-04-14Pass down the address family through the pr_input calls. ThisAlexander Bluhm
2017-02-09percpu counters for TCP statsJeremie Courreges-Anglas
2017-01-29Change the IPv4 pr_input function to the way IPv6 is implemented,Alexander Bluhm
2017-01-25Since raw_input() and route_input() are gone from pr_input, we canAlexander Bluhm
2017-01-10Remove NULL checks before m_free(9), it deals with it.Martin Pieuchot
2016-12-19Introduce the NET_LOCK() a rwlock used to serialize accesses to the partsMartin Pieuchot
2016-11-16Be consistent and do not use braces for single line statements.Martin Pieuchot
2016-11-16Kill recursive splsoftnet()s.Martin Pieuchot
2016-11-15Use __func__ in panic strings to reduce noise when grepping.Martin Pieuchot
2016-11-07Use goto for consistently instead of splx() and return.Martin Pieuchot
2016-10-04One more timeout_set_proc(9) conversion.Martin Pieuchot
2016-09-19For incomming connections keep the TF_NOPUSH flag if TCP_NOPUSH wasAlexander Bluhm
2016-09-15all pools have their ipl set via pool_setipl, so fold it into pool_init.David Gwynne
2016-08-31Use 'sc_route{4,6}' directly instead of casting them to 'struct route *'.Martin Pieuchot
2016-07-20Make the size for the syn cache hash array tunable. As we areAlexander Bluhm
2016-07-01Make accepted sockets inherit IP_TTL from the listening socket.Jeremie Courreges-Anglas