mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-12 13:06:36 +00:00
send busy reply if max connections number is exceeded
Originally committed as revision 18103 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1a4ab332c6
commit
0bdd8b858f
22
ffserver.c
22
ffserver.c
@ -700,6 +700,22 @@ static void start_wait_request(HTTPContext *c, int is_rtsp)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void http_send_too_busy_reply(int fd)
|
||||||
|
{
|
||||||
|
char buffer[300];
|
||||||
|
int len = snprintf(buffer, sizeof(buffer),
|
||||||
|
"HTTP/1.0 200 Server too busy\r\n"
|
||||||
|
"Content-type: text/html\r\n"
|
||||||
|
"\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 number of current connections is %d, and this exceeds the limit of %d.</p>\r\n"
|
||||||
|
"</body></html>\r\n",
|
||||||
|
nb_connections, nb_max_connections);
|
||||||
|
send(fd, buffer, len, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static void new_connection(int server_fd, int is_rtsp)
|
static void new_connection(int server_fd, int is_rtsp)
|
||||||
{
|
{
|
||||||
struct sockaddr_in from_addr;
|
struct sockaddr_in from_addr;
|
||||||
@ -715,10 +731,10 @@ static void new_connection(int server_fd, int is_rtsp)
|
|||||||
}
|
}
|
||||||
ff_socket_nonblock(fd, 1);
|
ff_socket_nonblock(fd, 1);
|
||||||
|
|
||||||
/* XXX: should output a warning page when coming
|
if (nb_connections >= nb_max_connections) {
|
||||||
close to the connection limit */
|
http_send_too_busy_reply(fd);
|
||||||
if (nb_connections >= nb_max_connections)
|
|
||||||
goto fail;
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
/* add a new connection */
|
/* add a new connection */
|
||||||
c = av_mallocz(sizeof(HTTPContext));
|
c = av_mallocz(sizeof(HTTPContext));
|
||||||
|
Loading…
Reference in New Issue
Block a user