From 2a22187f399a3d652cef943b563d079b029e559c Mon Sep 17 00:00:00 2001
From: Howard Chu <hyc@highlandsun.com>
Date: Thu, 8 Jul 2010 08:59:53 +0000
Subject: [PATCH] Fix "server too busy" status code

Originally committed as revision 24105 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 ffserver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffserver.c b/ffserver.c
index e48af709a97..3559968458e 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"
-- 
GitLab