naiveproxy/src
klzgrad 940d123a5d h2: 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 default. It should probably be turned on
through an interface but that implies passing a flag through deep
interface chains right now requiring intrusive changes to multiple
places.

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.
2021-04-24 07:22:25 +08:00
..
android_webview Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
apps Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
ash Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
base base: Disable trace event 2021-04-24 07:16:38 +08:00
build build: Force determinism in official build 2021-04-24 07:16:10 +08:00
build_overrides Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
buildtools Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
cc Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
chrome Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
chromecast Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
chromeos Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
cloud_print Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
codelabs Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
components Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
content build: Don't depend on dri in //content/gpu 2021-04-24 07:06:52 +08:00
courgette Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
crypto Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
dbus Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
device Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
extensions Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
fuchsia Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
gin Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
google_apis Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
google_update Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
gpu Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
headless Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
ios Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
ipc Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
jingle Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
media Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
mojo Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
native_client Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
native_client_sdk/src Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
net h2: Add support for HTTP/2 CONNECT Fast Open 2021-04-24 07:22:25 +08:00
pdf Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
ppapi Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
printing Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
remoting Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
rlz Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
sandbox Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
services Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
skia Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
sql Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
storage Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
testing Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
third_party build: Avoid naming conflict in fstatat64 2021-04-24 07:16:28 +08:00
tools Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
ui Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
url build: Remove icu 2021-04-24 07:16:27 +08:00
v8 Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
weblayer Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
.clang-format Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
.gitattributes Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
.gn Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
AUTHORS Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
BUILD.gn Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00
LICENSE Import chromium-90.0.4430.85 2021-04-24 07:06:52 +08:00