You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
ffserver: wrap around too-busy message text
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
This commit is contained in:
@@ -741,8 +741,10 @@ static void http_send_too_busy_reply(int fd)
|
|||||||
"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"
|
||||||
"<p>The server is too busy to serve your request at this time.</p>\r\n"
|
"<p>The server is too busy to serve your request at "
|
||||||
"<p>The number of current connections is %u, and this exceeds the limit of %u.</p>\r\n"
|
"this time.</p>\r\n"
|
||||||
|
"<p>The number of current connections is %u, and this "
|
||||||
|
"exceeds the limit of %u.</p>\r\n"
|
||||||
"</body></html>\r\n",
|
"</body></html>\r\n",
|
||||||
nb_connections, config.nb_max_connections);
|
nb_connections, config.nb_max_connections);
|
||||||
av_assert0(len < sizeof(buffer));
|
av_assert0(len < sizeof(buffer));
|
||||||
|
Reference in New Issue
Block a user