summaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-06-23 16:23:51 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-06-25 09:57:19 +0200
commitd5ed571948a088468a2f4b9b457677e99fb80510 (patch)
tree6381e553674782cbdd6f59dbeec18ccc2715d7b0 /lib/http.c
parent31e53584db5879894809fbde5445aac7553ac3e2 (diff)
downloadcurl-d5ed571948a088468a2f4b9b457677e99fb80510.tar.gz
url: allow user + password to contain "control codes" for HTTP(S)
Reported-by: Jon Johnson Jr Fixes #5582 Closes #5592
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/http.c b/lib/http.c
index 482f9ad0a..19e471ee6 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -125,7 +125,8 @@ const struct Curl_handler Curl_handler_http = {
ZERO_NULL, /* connection_check */
PORT_HTTP, /* defport */
CURLPROTO_HTTP, /* protocol */
- PROTOPT_CREDSPERREQUEST /* flags */
+ PROTOPT_CREDSPERREQUEST | /* flags */
+ PROTOPT_USERPWDCTRL
};
#ifdef USE_SSL
@@ -150,7 +151,8 @@ const struct Curl_handler Curl_handler_https = {
ZERO_NULL, /* connection_check */
PORT_HTTPS, /* defport */
CURLPROTO_HTTPS, /* protocol */
- PROTOPT_SSL | PROTOPT_CREDSPERREQUEST | PROTOPT_ALPN_NPN /* flags */
+ PROTOPT_SSL | PROTOPT_CREDSPERREQUEST | PROTOPT_ALPN_NPN | /* flags */
+ PROTOPT_USERPWDCTRL
};
#endif