From 3a8210c975fd829f00e43f87974d51e3d6b12410 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 27 Jan 2001 18:57:07 +0000 Subject: Resume is now done with a Content-Range header instead of a Range header if the request isn't GET. Presumably, this is how it should be made. --- lib/http.c | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/http.c b/lib/http.c index a9b9c5d97..7553b613b 100644 --- a/lib/http.c +++ b/lib/http.c @@ -429,8 +429,21 @@ CURLcode Curl_http(struct connectdata *conn) } } } - if((data->bits.set_range) && !checkheaders(data, "Range:")) { - data->ptr_rangeline = aprintf("Range: bytes=%s\015\012", data->range); + if(data->bits.set_range) { + /* + * A range is selected. We use different headers whether we're downloading + * or uploading and we always let customized headers override our internal + * ones if any such are specified. + */ + if((data->httpreq == HTTPREQ_GET) && + !checkheaders(data, "Range:")) { + data->ptr_rangeline = aprintf("Range: bytes=%s\015\012", data->range); + } + else if((data->httpreq != HTTPREQ_GET) && + !checkheaders(data, "Content-Range:")) { + data->ptr_rangeline = aprintf("Content-Range: bytes=%s\015\012", + data->range); + } } if((data->bits.http_set_referer) && !checkheaders(data, "Referer:")) { data->ptr_ref = aprintf("Referer: %s\015\012", data->referer); -- cgit v1.2.3