Fix remote request for HTTP proxies. Should close PR#2670.

This commit is contained in:
Garrett Wollman 1997-02-11 20:46:06 +00:00
parent 9c4abf41ee
commit 857292949c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=22573
2 changed files with 15 additions and 5 deletions

View File

@ -26,7 +26,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: http.c,v 1.2 1997/01/31 19:55:50 wollman Exp $
* $Id: http.c,v 1.3 1997/02/05 19:59:14 wollman Exp $
*/
#include <sys/types.h>
@ -169,7 +169,7 @@ http_parse(struct fetch_state *fs, const char *uri)
port = 80;
}
p = slash + 1;
p = slash;
https = safe_malloc(sizeof *https);
@ -184,7 +184,12 @@ http_parse(struct fetch_state *fs, const char *uri)
sprintf(hosthdr, "Host: %s:%d\r\n", hostname, port);
https->http_host_header = safe_strdup(hosthdr);
/*
* NB: HTTP/1.1 servers MUST also accept a full URI.
* However, HTTP/1.0 servers will ONLY accept a trimmed URI.
*/
https->http_remote_request = safe_strdup(p);
p++;
ques = strpbrk(p, "?#");
if (ques) {
trimmed_name = safe_strndup(p, ques - p);
@ -449,7 +454,7 @@ http_retrieve(struct fetch_state *fs)
} while(0)
retry:
addstr(iov, n, "GET /");
addstr(iov, n, "GET ");
addstr(iov, n, https->http_remote_request);
addstr(iov, n, " HTTP/1.1\r\n");
/*
@ -864,6 +869,11 @@ http_retrieve(struct fetch_state *fs)
fseek(local, restart_from, SEEK_SET); /* XXX truncation off_t->long */
display(fs, total_length, restart_from); /* XXX truncation */
/*
* Eventually this loop will be separated out as http_suck(), and
* there will be a separate http_suck_chunked() to deal with that
* Transfer-Encoding.
*/
do {
alarm(timo);
readresult = fread(buf, 1, sizeof buf, remote);

View File

@ -26,7 +26,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: util.c,v 1.3 1997/02/05 19:59:18 wollman Exp $
* $Id: util.c,v 1.4 1997/02/07 17:55:01 wollman Exp $
*/
#include <sys/types.h>
@ -167,7 +167,7 @@ parse_host_port(const char *s, char **hostname, int *port)
ul = strtoul(colon + 1, &ep, 10);
if (*ep != '\0' || colon[1] == '\0' || errno != 0
|| ul < 1 || ul > 65534) {
warnx("`%s': invalid port number", s);
warnx("`%s': invalid port number", colon + 1);
return EX_USAGE;
}