mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
88b1ca7cba
Failures clearly returned from a (SOCKS) proxy now causes this return code. Previously the situation was not very clear as what would be returned and when. In addition: when this error code is returned, an application can use CURLINFO_PROXY_ERROR to query libcurl for the detailed error, which then returns a value from the new 'CURLproxycode' enum. Closes #5770
45 lines
569 B
Plaintext
45 lines
569 B
Plaintext
<testcase>
|
|
#based off 19
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
SOCKS4
|
|
connect to non-listen
|
|
FAILURE
|
|
</keywords>
|
|
</info>
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
</data>
|
|
# 91 is socks4 failure
|
|
<servercmd>
|
|
response 91
|
|
</servercmd>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
socks4
|
|
</server>
|
|
<features>
|
|
http
|
|
proxy
|
|
</features>
|
|
<name>
|
|
Attempt connect to non-listening HTTP server via SOCKS4 proxy
|
|
</name>
|
|
<command>
|
|
--socks4 %HOSTIP:%SOCKSPORT http://%HOSTIP:%NOLISTENPORT
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<errorcode>
|
|
97
|
|
</errorcode>
|
|
</verify>
|
|
</testcase>
|