From: wessels <> Date: Mon, 23 Sep 2002 10:01:51 +0000 (+0000) Subject: Add HTTP status code 307 as HTTP_TEMPORARY_REDIRECT. X-Git-Tag: SQUID_3_0_PRE1~741 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bae99ed48a11553c3570232e6b5dafdf5874d58;p=thirdparty%2Fsquid.git Add HTTP status code 307 as HTTP_TEMPORARY_REDIRECT. --- diff --git a/src/HttpStatusLine.cc b/src/HttpStatusLine.cc index 1f5ac756d8..cfccb145a0 100644 --- a/src/HttpStatusLine.cc +++ b/src/HttpStatusLine.cc @@ -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;