naiveproxy/src
klzgrad c5ab3180ab net/spdy: Add support for HTTP/2 CONNECT Fast Open
SpdyProxyClientSocket waits for 200 OK before returning OK for Connect.

Change that behavior to returning OK immediately after CONNECT header.

This feature is enabled by a "fastopen" header via the proxy delegate.

Design notes:

The current approach is better than the obvious TCP Fast Open style fake
Connect().

Fast Open should not be used for preconnects as preconnects need actual
connections set up. The Naive client does not use preconnects per se
(using "...RawConnect") but the user agent will use preconnects and the
Naive client has to infer that. Hence there is a need to check the
incoming socket for available bytes right before Connect() and configure
whether a socket should be connected with Fast Open. But fake Connect()
make it difficult to check the incoming socket because it immediately
returns and there is not enough time for the first read of the incoming
socket to arrive.

To check for preconnects it is best to push the first read of the
incoming socket to as late as possible. The other (wrong) way of doing
that is to pass in an early read callback and call it immediately after
sending HEADERS and then send the available bytes right there. This way
is wrong because it does not work with late binding, which assumes
Connect() is idempotent and causes sockets opened in this way to be
potentially bound to the wrong socket requests.

The current approach is to return OK in Connect() right after sending
HEADERS before getting the reply, which is to be received later. If the
reply is received during a subsequent Read() and the reply indicates an
error, the error is returned to the callback of the Read(); otherwise
the error is ignored with the connection disconnected and subsequent
Read() and Write() should discover the disconnection.
2024-11-20 20:19:39 +08:00
..
base base: Don't fix Y2038 problem with icu 2024-11-20 20:19:38 +08:00
build build: Minimize sysroot creator script 2024-11-20 20:19:38 +08:00
build_overrides android: build: Disable Android java templates 2024-11-20 20:19:38 +08:00
buildtools libc++: Fix assertion handler 2024-11-20 20:19:38 +08:00
chrome Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
components build: Remove tests and minimize 2024-11-20 19:33:56 +08:00
crypto build: Remove tests and minimize 2024-11-20 19:33:56 +08:00
ios Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
ipc Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
net net/spdy: Add support for HTTP/2 CONNECT Fast Open 2024-11-20 20:19:39 +08:00
testing/gtest/include/gtest Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
third_party android: third_party/jni_zero: Remove JNI functions 2024-11-20 20:19:38 +08:00
tools Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
url net, url: Remove icu 2024-11-20 20:19:38 +08:00
.clang-format Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
.gitattributes Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
.gn Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
AUTHORS Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
BUILD.gn build: Remove tests and minimize 2024-11-20 19:33:56 +08:00
DEPS Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00
LICENSE Import chromium-131.0.6778.86 2024-11-20 19:32:56 +08:00