From: Daniel Stenberg Date: Tue, 25 Jul 2000 07:28:28 +0000 (+0000) Subject: The Host: header now includes the port number if not default HTTP X-Git-Tag: upstream/7.37.1~17736 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e999182758f809fb8a173c0caec2283d4bbfe280;p=platform%2Fupstream%2Fcurl.git The Host: header now includes the port number if not default HTTP --- diff --git a/lib/http.c b/lib/http.c index d83942d..c3fb857 100644 --- a/lib/http.c +++ b/lib/http.c @@ -269,9 +269,12 @@ CURLcode http(struct connectdata *conn) http->sendit = getFormData(data->httppost, &http->postsize); } - if(!checkheaders(data, "Host:")) - data->ptr_host = maprintf("Host: %s\r\n", host); - + if(!checkheaders(data, "Host:")) { + if(data->port != PORT_HTTP) + data->ptr_host = maprintf("Host: %s:%d\r\n", host, data->port); + else + data->ptr_host = maprintf("Host: %s\r\n", host); + } if(!checkheaders(data, "Pragma:")) http->p_pragma = "Pragma: no-cache\r\n";