mirror of
https://github.com/curl/curl.git
synced 2026-07-29 23:58:05 +03:00
parent
30d7440295
commit
eecc273f6d
2 changed files with 6 additions and 1 deletions
|
|
@ -20,7 +20,6 @@ http
|
|||
pop3
|
||||
smtp
|
||||
imap
|
||||
ldap
|
||||
dict
|
||||
ftp
|
||||
</features>
|
||||
|
|
|
|||
|
|
@ -891,9 +891,11 @@ static const struct urltestcase get_url_list[] = {
|
|||
{"pop3.example.com/path/html",
|
||||
"pop3://pop3.example.com/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
#ifndef CURL_DISABLE_LDAP
|
||||
{"ldap.example.com/path/html",
|
||||
"ldap://ldap.example.com/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
#endif
|
||||
{"imap.example.com/path/html",
|
||||
"imap://imap.example.com/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
|
|
@ -912,9 +914,11 @@ static const struct urltestcase get_url_list[] = {
|
|||
{"pop3.com/path/html",
|
||||
"pop3://pop3.com/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
#ifndef CURL_DISABLE_LDAP
|
||||
{"ldap.com/path/html",
|
||||
"ldap://ldap.com/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
#endif
|
||||
{"imap.com/path/html",
|
||||
"imap://imap.com/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
|
|
@ -930,9 +934,11 @@ static const struct urltestcase get_url_list[] = {
|
|||
{"pop3/path/html",
|
||||
"http://pop3/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
#ifndef CURL_DISABLE_LDAP
|
||||
{"ldap/path/html",
|
||||
"http://ldap/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
#endif
|
||||
{"imap/path/html",
|
||||
"http://imap/path/html",
|
||||
CURLU_GUESS_SCHEME, 0, CURLUE_OK},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue