Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(h2): preserve proxy authentication headers #2597

Merged
merged 1 commit into from Jul 16, 2021

Commits on Jul 16, 2021

  1. fix(h2): preserve proxy authentication headers

    That Proxy-Authenticate and Proxy-Authorization are forbidden over h2
    is not actually specified anywhere, plus h2 also supports CONNECT
    requests, which are specifically made to do requests over a proxy,
    and those proxies may require authentication, sometimes through
    Proxy-Authorization.
    
    Note that there is an openwebdocs project that just started to clear
    up any MDN-induced confusion in implementations:
    
    	openwebdocs/project#43
    
    Also, Daniel Stenberg (curl) also recently commented about
    Proxy-Connection not being stripped out by curl, Hyper may want to
    also remove Proxy-Connection from the list for that reason:
    
    	https://twitter.com/bagder/status/1415967315817082880
    nox committed Jul 16, 2021
    Copy the full SHA
    2dc65b6 View commit details
    Browse the repository at this point in the history