mirror of
https://github.com/curl/curl.git
synced 2026-07-09 15:57:18 +03:00
Fix a regression in curl 8.21.0-rc3: Check whether the host and the "connect
to host" are equal before initializing the proxy. If they are equal, switching
to tunnel mode is not necessary.
Follow-up to 73daec6
Closes #22110
86 lines
1.6 KiB
XML
86 lines
1.6 KiB
XML
<?xml version="1.0" encoding="US-ASCII"?>
|
|
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
HTTP CONNECT
|
|
HTTP proxy
|
|
proxytunnel
|
|
CURLOPT_CONNECT_TO
|
|
SOCKS5
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<connect>
|
|
HTTP/1.1 200 Connection established
|
|
|
|
</connect>
|
|
|
|
<data>
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Content-Length: 3
|
|
Content-Type: text/plain
|
|
|
|
OK
|
|
</data>
|
|
|
|
<datacheck>
|
|
HTTP/1.1 200 Connection established
|
|
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Content-Length: 3
|
|
Content-Type: text/plain
|
|
|
|
OK
|
|
</datacheck>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
http-proxy
|
|
socks5
|
|
</server>
|
|
<name>
|
|
--connect-to via SOCKS proxy and HTTP proxy (tunnel mode automatically)
|
|
</name>
|
|
<features>
|
|
proxy
|
|
</features>
|
|
<command>
|
|
http://www.example.com.%TESTNUMBER/%TESTNUMBER --connect-to ::connect.example.com.%TESTNUMBER:%HTTPPORT -x %HOSTIP:%PROXYPORT --preproxy socks5://%HOSTIP:%SOCKSPORT --next
|
|
http://www.example.com.%TESTNUMBER:%HTTPPORT/%TESTNUMBER --connect-to ::www.example.com.%TESTNUMBER:%HTTPPORT -x %HOSTIP:%PROXYPORT --preproxy socks5://%HOSTIP:%SOCKSPORT
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<proxy crlf="yes">
|
|
CONNECT connect.example.com.%TESTNUMBER:%HTTPPORT HTTP/1.1
|
|
Host: connect.example.com.%TESTNUMBER:%HTTPPORT
|
|
User-Agent: curl/%VERSION
|
|
Proxy-Connection: Keep-Alive
|
|
|
|
GET http://www.example.com.%TESTNUMBER:%HTTPPORT/%TESTNUMBER HTTP/1.1
|
|
Host: www.example.com.%TESTNUMBER:%HTTPPORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
Proxy-Connection: Keep-Alive
|
|
|
|
</proxy>
|
|
<protocol crlf="headers">
|
|
GET /%TESTNUMBER HTTP/1.1
|
|
Host: www.example.com.%TESTNUMBER
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
|
|
</protocol>
|
|
|
|
</verify>
|
|
</testcase>
|