Browse Source

Fix "server too busy" status code

Originally committed as revision 24105 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Howard Chu 15 years ago
parent
commit
2a22187f39
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffserver.c

+ 1
- 1
ffserver.c View File

@@ -740,7 +740,7 @@ static void http_send_too_busy_reply(int fd)
{ {
char buffer[300]; char buffer[300];
int len = snprintf(buffer, sizeof(buffer), int len = snprintf(buffer, sizeof(buffer),
"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…
Cancel
Save