mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
9756d1da76
- Add new option CURLOPT_DEFAULT_PROTOCOL to allow specifying a default protocol for schemeless URLs. - Add new tool option --proto-default to expose CURLOPT_DEFAULT_PROTOCOL. In the case of schemeless URLs libcurl will behave in this way: When the option is used libcurl will use the supplied default. When the option is not used, libcurl will follow its usual plan of guessing from the hostname and falling back to 'http'.
34 lines
423 B
Plaintext
34 lines
423 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
--proto-default
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
none
|
|
</features>
|
|
<server>
|
|
none
|
|
</server>
|
|
<name>
|
|
Attempt to set a default protocol that does not exist
|
|
</name>
|
|
<command>
|
|
--proto-default DOESNOTEXIST
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
# CURLE_UNSUPPORTED_PROTOCOL is error code 1
|
|
<errorcode>
|
|
1
|
|
</errorcode>
|
|
</verify>
|
|
</testcase>
|