mirror of
https://github.com/curl/curl.git
synced 2026-08-25 07:13:32 +03:00
url: Added smtp and pop3 hostnames to the protocol detection list
This commit is contained in:
parent
2c0d65785f
commit
2af9fd4960
1 changed files with 4 additions and 0 deletions
|
|
@ -3771,6 +3771,10 @@ static CURLcode parseurlandfillconn(struct SessionHandle *data,
|
|||
protop = "LDAP";
|
||||
else if(checkprefix("IMAP.", conn->host.name))
|
||||
protop = "IMAP";
|
||||
else if(checkprefix("SMTP.", conn->host.name))
|
||||
protop = "smtp";
|
||||
else if(checkprefix("POP3.", conn->host.name))
|
||||
protop = "pop3";
|
||||
else {
|
||||
protop = "http";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue