naiveproxy/src
klzgrad 105153779a socket: Force tunneling for all sockets
In the socket system, only WebSocket sockets are allowed to tunnel
through HTTP/1 proxies. "Raw" sockets in the normal socket pool don't
have it, and their CONNECT headers are not sent, instead the raw
payload is sent as-is to the HTTP/1 proxy, breaking the proxying.

The socket system works like this:

- HTTP sockets via HTTP/1 proxies: normal pool, no tunneling.
- HTTPS sockets via HTTP/1 proxies: normal pool, no tunneling,
  but does its own proxy encapsulation.
- WS sockets via HTTP/1 proxies: WS pool, tunneling.

In Naive, we need the normal pool because the WS pool has some extra
restrictions but we also need tunneling to produce a client socket
with proxy tunneling built in.

Therefore force tunneling for all sockets and have them always send
CONNECT headers. This will otherwise break regular HTTP client sockets
via HTTP/1 proxies, but as we don't use this combination, it is ok.
2022-05-25 13:35:41 +08:00
..
base base: Disable trace event 2022-05-21 16:32:34 +08:00
build build: Force determinism in official build 2022-05-21 16:32:34 +08:00
build_overrides build: Disable Android java templates 2022-05-21 16:32:34 +08:00
buildtools libc++: Guard C++20 atomic type aliases 2022-05-25 13:35:41 +08:00
chrome Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
components build: Remove tests and minimize 2022-05-21 16:32:33 +08:00
crypto build: Remove tests and minimize 2022-05-21 16:32:33 +08:00
ipc Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
net socket: Force tunneling for all sockets 2022-05-25 13:35:41 +08:00
testing/gtest/include/gtest Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
third_party lss: Avoid naming conflict in fstatat64 2022-05-21 16:32:34 +08:00
tools Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
url url: Remove perfetto tracing 2022-05-21 16:32:34 +08:00
.clang-format Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
.gitattributes Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
.gn Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
AUTHORS Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
BUILD.gn build: Remove tests and minimize 2022-05-21 16:32:33 +08:00
DEPS Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00
LICENSE Import chromium-101.0.4951.41 2022-05-03 18:16:59 +08:00