mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
http: Don't add a Range: bytes=0- header for POST
That header simply doesn't make sense in that context. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
2305742b2a
commit
f2d0015531
@ -317,7 +317,7 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr,
|
|||||||
if (!has_header(s->headers, "\r\nAccept: "))
|
if (!has_header(s->headers, "\r\nAccept: "))
|
||||||
len += av_strlcpy(headers + len, "Accept: */*\r\n",
|
len += av_strlcpy(headers + len, "Accept: */*\r\n",
|
||||||
sizeof(headers) - len);
|
sizeof(headers) - len);
|
||||||
if (!has_header(s->headers, "\r\nRange: "))
|
if (!has_header(s->headers, "\r\nRange: ") && !post)
|
||||||
len += av_strlcatf(headers + len, sizeof(headers) - len,
|
len += av_strlcatf(headers + len, sizeof(headers) - len,
|
||||||
"Range: bytes=%"PRId64"-\r\n", s->off);
|
"Range: bytes=%"PRId64"-\r\n", s->off);
|
||||||
if (!has_header(s->headers, "\r\nConnection: "))
|
if (!has_header(s->headers, "\r\nConnection: "))
|
||||||
|
Loading…
Reference in New Issue
Block a user