From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (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 9A73121A143CE for ; Thu, 8 Jun 2017 17:57:12 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jun 2017 17:58:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,316,1493708400"; d="scan'208";a="1158361111" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga001.fm.intel.com with ESMTP; 08 Jun 2017 17:58:21 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 8 Jun 2017 17:58:21 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.116]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.197]) with mapi id 14.03.0319.002; Fri, 9 Jun 2017 08:58:19 +0800 From: "Wu, Jiaxin" To: hegdenag , "edk2-devel@lists.01.org" CC: "sriram-s@hpe.com" , "Fu, Siyuan" , "Ye, Ting" Thread-Topic: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect Thread-Index: AQHS4CH1V0KSBbGklUyV5ndXD9cqG6IbtoMQ Date: Fri, 9 Jun 2017 00:58:19 +0000 Message-ID: <895558F6EA4E3B41AC93A00D163B7274162DABBF@SHSMSX103.ccr.corp.intel.com> References: <20170608063903.20668-1-nagaraj-p.hegde@hpe.com> In-Reply-To: <20170608063903.20668-1-nagaraj-p.hegde@hpe.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYjM3YzhlYjItZDZjMi00NDAzLThmODEtOGI2ZGIwZTM3OGE3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkJjODJudDFVTTJSdzhVa3RtQkt6a3hsQVJmSXppdWdDQjFKWW5keGhlWWM9In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [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: Fri, 09 Jun 2017 00:57:12 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Thanks the contribution.=20 Reviewed-by: Wu Jiaxin > -----Original Message----- > From: hegdenag [mailto:nagaraj-p.hegde@hpe.com] > Sent: Thursday, June 8, 2017 2:39 PM > To: edk2-devel@lists.01.org > Cc: Wu, Jiaxin ; sriram-s@hpe.com; Fu, Siyuan > ; Ye, Ting > Subject: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect >=20 > Adding Support for the ECR for HTTP 308 redirect. >=20 > 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(-) >=20 > 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) >=20 > 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; >=20 > /// > -- > 2.13.0.windows.1