look into TCP fastopen and TCP_QUICKACK #14173
Labels
breaking
Implementing this issue could cause existing code to no longer compile or have different behavior.
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
optimization
standard library
This issue involves writing Zig code for the standard library.
Milestone
Extracted from #13980.
Here's an example of using TCP fastopen to send data along with the tcp connection:
TCP_QUICKACK is another option that could be enabled in setsockopt. Both options are intended to reduce latency.
This issue is to change the std lib API for making an HTTPS request to take advantage of these things, and see if we can reduce the latency of establishing a connection. For HTTP GET requests it should do the same but with the HTTP header instead of the TLS ClientHello.
The text was updated successfully, but these errors were encountered: