BB#106: fix CONNECT requsts with IPv6 literal addresses as host.

Use extract_url instead of the old extract_ssl_url:
extract_url is generic and handles ipv6 literal addresses correctly.

Signed-off-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Michael Adam 2013-11-16 15:14:58 +01:00
parent 98f77ef8c7
commit 9f43cfd488

View File

@ -424,7 +424,7 @@ BAD_REQUEST_ERROR:
goto fail;
}
} else if (strcmp (request->method, "CONNECT") == 0) {
if (extract_ssl_url (url, request) < 0) {
if (extract_url (url, HTTP_PORT_SSL, request) < 0) {
indicate_http_error (connptr, 400, "Bad Request",
"detail", "Could not parse URL",
"url", url, NULL);