naiveproxy/net
klzgrad 46c2225acd 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.
2018-12-02 20:11:38 -05:00
..
android Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
base build: Remove icu 2018-08-14 22:57:51 +00:00
cert Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
cert_net Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
cookies Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
data/ssl/certificates Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
der Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
disk_cache Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
dns Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
docs Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
extras Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
filter Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
ftp Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
http Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
interfaces Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
log Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
network_error_logging Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
nqe Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
ntlm Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
proxy_resolution Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
quic Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
reporting Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
server Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
socket socket: Allow higher limits for proxies 2018-12-02 20:11:37 -05:00
spdy h2: Add support for HTTP/2 CONNECT Fast Open 2018-12-02 20:11:38 -05:00
ssl Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
test Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
third_party Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
tools Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
traffic_annotation Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
url_request Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
websockets Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
BUILD.gn build: Remove icu 2018-08-14 22:57:51 +00:00
DEPS Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
features.gni Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
OWNERS Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00
README.md Import chromium-70.0.3521.2 2018-08-14 22:19:20 +00:00

TODO: Add network stack documentation. :)