mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-03 14:32:16 +02:00
libavformat/http: add support for headers option in listen mode
Instead of silently ignoring the headers option in listen mode, use the provided headers. Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
17eb0042bc
commit
e8b355a028
@ -371,12 +371,14 @@ static int http_write_reply(URLContext* h, int status_code)
|
||||
"HTTP/1.1 %03d %s\r\n"
|
||||
"Content-Type: %s\r\n"
|
||||
"Content-Length: %"SIZE_SPECIFIER"\r\n"
|
||||
"%s"
|
||||
"\r\n"
|
||||
"%03d %s\r\n",
|
||||
reply_code,
|
||||
reply_text,
|
||||
content_type,
|
||||
strlen(reply_text) + 6, // 3 digit status code + space + \r\n
|
||||
s->headers ? s->headers : "",
|
||||
reply_code,
|
||||
reply_text);
|
||||
} else {
|
||||
@ -385,10 +387,12 @@ static int http_write_reply(URLContext* h, int status_code)
|
||||
"HTTP/1.1 %03d %s\r\n"
|
||||
"Content-Type: %s\r\n"
|
||||
"Transfer-Encoding: chunked\r\n"
|
||||
"%s"
|
||||
"\r\n",
|
||||
reply_code,
|
||||
reply_text,
|
||||
content_type);
|
||||
content_type,
|
||||
s->headers ? s->headers : "");
|
||||
}
|
||||
av_log(h, AV_LOG_TRACE, "HTTP reply header: \n%s----\n", message);
|
||||
if ((ret = ffurl_write(s->hd, message, message_len)) < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user