Loading src/http.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -237,9 +237,9 @@ libhttppp::HttpClient::HttpClient(const HttpUrl& desturl, int vers) if (h2_ok) { _vers = 2; } else { _cltsock.reset(); _vers = 0; resetConnection(); HTTPException ex; ex[HTTPException::Error] << "HttpClient ctor connect failed: HTTP/2 negotiation failed after HTTP/3 fallback"; throw ex; } } else { // Cleartext cannot negotiate ALPN; fall back directly. Loading Loading
src/http.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -237,9 +237,9 @@ libhttppp::HttpClient::HttpClient(const HttpUrl& desturl, int vers) if (h2_ok) { _vers = 2; } else { _cltsock.reset(); _vers = 0; resetConnection(); HTTPException ex; ex[HTTPException::Error] << "HttpClient ctor connect failed: HTTP/2 negotiation failed after HTTP/3 fallback"; throw ex; } } else { // Cleartext cannot negotiate ALPN; fall back directly. Loading