Skip to content

Tags: scratlzj/naiveproxy

Tags

v78.0.3904.70-1

Toggle v78.0.3904.70-1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v77.0.3865.90-3

Toggle v77.0.3865.90-3's commit message
Document usage of --quic-version

v77.0.3865.90-2

Toggle v77.0.3865.90-2's commit message
Support arm64 and arm builds

v77.0.3865.90-1

Toggle v77.0.3865.90-1's commit message
Document usage of redir://

v76.0.3809.87-1

Toggle v76.0.3809.87-1's commit message
Fix OnPushComplete logic

Should not Push the same thing again.

v76.0.3809.12-redir2

Toggle v76.0.3809.12-redir2's commit message
Fix OnPushComplete logic

Should not Push the same thing again.

v76.0.3809.12-redir

Toggle v76.0.3809.12-redir's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix Travis build on MacOS

v76.0.3809.12

Toggle v76.0.3809.12's commit message
Add continuous integration and tests

v74.0.3729.108-1

Toggle v74.0.3729.108-1's commit message
Add continuous integration and tests

v73.0.3683.86-3

Toggle v73.0.3683.86-3's commit message
quic: Fix HTTP/3 Fast CONNECT behavior

SpdyProxyClientSocket uses read_callback_ for both Connect() and
Read(), and its OnIOComplete() calls read_callback_, thus its fast
connect code checks read_callback_. The code was ported to
QuicProxyClientSocket without much change.

But QuicProxyClientSocket uses a separate connect_callback_ apart from
read_callback_, and its OnIOComplete() calls connect_callback_, thus
when headers are received after Connect() it doesn't need to check
read_callback_ and should always avoid calling connect_callback_.