]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Add HTTP status code 307 as HTTP_TEMPORARY_REDIRECT.
authorwessels <>
Mon, 23 Sep 2002 10:01:51 +0000 (10:01 +0000)
committerwessels <>
Mon, 23 Sep 2002 10:01:51 +0000 (10:01 +0000)
src/HttpStatusLine.cc

index 1f5ac756d8fb302dead5b5b36e8b8943e0c1a16f..cfccb145a0408ec552dab8ef95eda98fbe448155 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: HttpStatusLine.cc,v 1.24 2001/03/10 00:55:36 hno Exp $
+ * $Id: HttpStatusLine.cc,v 1.25 2002/09/23 04:01:51 wessels Exp $
  *
  * DEBUG: section 57    HTTP Status-line
  * AUTHOR: Alex Rousskov
@@ -161,6 +161,9 @@ httpStatusString(http_status status)
     case HTTP_USE_PROXY:
        p = "Use Proxy";
        break;
+    case HTTP_TEMPORARY_REDIRECT:
+       p = "Temporary Redirect";
+       break;
     case HTTP_BAD_REQUEST:
        p = "Bad Request";
        break;