From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from g2t2353.austin.hpe.com (g2t2353.austin.hpe.com [15.233.44.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 5165020945533 for ; Wed, 7 Jun 2017 23:38:02 -0700 (PDT) Received: from hegdenag.asiapacific.hpqcorp.net (unknown [15.213.58.96]) by g2t2353.austin.hpe.com (Postfix) with ESMTP id 1F69D76; Thu, 8 Jun 2017 06:39:05 +0000 (UTC) From: hegdenag To: edk2-devel@lists.01.org Cc: jiaxin.wu@intel.com, sriram-s@hpe.com, siyuan.fu@intel.com, ting.ye@intel.com Date: Thu, 8 Jun 2017 12:09:03 +0530 Message-Id: <20170608063903.20668-1-nagaraj-p.hegde@hpe.com> X-Mailer: git-send-email 2.13.0.windows.1 Subject: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2017 06:38:02 -0000 Adding Support for the ECR for HTTP 308 redirect. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P --- MdePkg/Include/Protocol/Http.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MdePkg/Include/Protocol/Http.h b/MdePkg/Include/Protocol/Http.h index 269416c9fc..4f3f08d3be 100644 --- a/MdePkg/Include/Protocol/Http.h +++ b/MdePkg/Include/Protocol/Http.h @@ -5,7 +5,7 @@ HTTP Protocol (HTTP) Copyright (c) 2016, Intel Corporation. All rights reserved.
- (C) Copyright 2015 Hewlett Packard Enterprise Development LP
+ (C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -103,7 +103,8 @@ typedef enum { HTTP_STATUS_502_BAD_GATEWAY, HTTP_STATUS_503_SERVICE_UNAVAILABLE, HTTP_STATUS_504_GATEWAY_TIME_OUT, - HTTP_STATUS_505_HTTP_VERSION_NOT_SUPPORTED + HTTP_STATUS_505_HTTP_VERSION_NOT_SUPPORTED, + HTTP_STATUS_308_PERMANENT_REDIRECT } EFI_HTTP_STATUS_CODE; /// -- 2.13.0.windows.1