mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
Also use 503 for bandwidth limit exceeded
Originally committed as revision 24107 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2a22187f39
commit
0aee2a57c8
@ -1589,10 +1589,10 @@ static int http_parse_request(HTTPContext *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (c->post == 0 && max_bandwidth < current_bandwidth) {
|
if (c->post == 0 && max_bandwidth < current_bandwidth) {
|
||||||
c->http_error = 200;
|
c->http_error = 503;
|
||||||
q = c->buffer;
|
q = c->buffer;
|
||||||
q += snprintf(q, c->buffer_size,
|
q += snprintf(q, c->buffer_size,
|
||||||
"HTTP/1.0 200 Server too busy\r\n"
|
"HTTP/1.0 503 Server too busy\r\n"
|
||||||
"Content-type: text/html\r\n"
|
"Content-type: text/html\r\n"
|
||||||
"\r\n"
|
"\r\n"
|
||||||
"<html><head><title>Too busy</title></head><body>\r\n"
|
"<html><head><title>Too busy</title></head><body>\r\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user