diff options
author | Howard Chu <hyc@highlandsun.com> | 2010-07-08 08:59:53 +0000 |
---|---|---|
committer | Howard Chu <hyc@highlandsun.com> | 2010-07-08 08:59:53 +0000 |
commit | 2a22187f399a3d652cef943b563d079b029e559c (patch) | |
tree | a190e89f18107cf9653930d864ce0bc186699b8d | |
parent | e0b855f6217c858b18e21a578168c35f11779a24 (diff) | |
download | ffmpeg-2a22187f399a3d652cef943b563d079b029e559c.tar.gz |
Fix "server too busy" status code
Originally committed as revision 24105 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c index e48af709a9..3559968458 100644 --- a/ffserver.c +++ b/ffserver.c @@ -740,7 +740,7 @@ 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" + "HTTP/1.0 503 Server too busy\r\n" "Content-type: text/html\r\n" "\r\n" "<html><head><title>Too busy</title></head><body>\r\n" |