X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fhelper%2Fproxy.inc;h=d60b564267c8e1fe22e659247ebfb9dfb5af3e0f;hp=2fb3477537a03a204b69323c06797f5978b24c12;hb=ab1eba311be2f8aab98eed7a6164e79d69b402b2;hpb=e57370d1f00da9e12de0917a9f907281ab8e84b5 diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc index 2fb3477..d60b564 100644 --- a/tests/helper/proxy.inc +++ b/tests/helper/proxy.inc @@ -6,8 +6,10 @@ include "server.inc"; serve(function($client) { /* this might be a proxy connect or a standard request */ $request = new http\Message($client, false); - - if ($request->getHeader("Proxy-Connection")) { + + /* libcurl >= 7.48 does not send Proxy-Connection anymore */ + if ($request->getHeader("Proxy-Connection") + || $request->getRequestMethod() === "CONNECT") { $response = new http\Env\Response; $response->setEnvRequest($request); $response->send($client);