public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect
@ 2017-06-08  6:39 hegdenag
  2017-06-09  0:58 ` Wu, Jiaxin
  2017-06-09  7:28 ` Subramanian, Sriram
  0 siblings, 2 replies; 3+ messages in thread
From: hegdenag @ 2017-06-08  6:39 UTC (permalink / raw)
  To: edk2-devel; +Cc: jiaxin.wu, sriram-s, siyuan.fu, ting.ye

Adding Support for the ECR for HTTP 308 redirect.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hegde Nagaraj P <nagaraj-p.hegde@hpe.com>
---
 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.<BR>
-  (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
+  (C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP<BR>
   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



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect
  2017-06-08  6:39 [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect hegdenag
@ 2017-06-09  0:58 ` Wu, Jiaxin
  2017-06-09  7:28 ` Subramanian, Sriram
  1 sibling, 0 replies; 3+ messages in thread
From: Wu, Jiaxin @ 2017-06-09  0:58 UTC (permalink / raw)
  To: hegdenag, edk2-devel@lists.01.org; +Cc: sriram-s@hpe.com, Fu, Siyuan, Ye, Ting

Thanks the contribution. 

Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>



> -----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 <jiaxin.wu@intel.com>; sriram-s@hpe.com; Fu, Siyuan
> <siyuan.fu@intel.com>; Ye, Ting <ting.ye@intel.com>
> Subject: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect
> 
> Adding Support for the ECR for HTTP 308 redirect.
> 
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Hegde Nagaraj P <nagaraj-p.hegde@hpe.com>
> ---
>  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.<BR>
> -  (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
> +  (C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP<BR>
>    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



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect
  2017-06-08  6:39 [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect hegdenag
  2017-06-09  0:58 ` Wu, Jiaxin
@ 2017-06-09  7:28 ` Subramanian, Sriram
  1 sibling, 0 replies; 3+ messages in thread
From: Subramanian, Sriram @ 2017-06-09  7:28 UTC (permalink / raw)
  To: Hegde, Nagaraj P, edk2-devel@lists.01.org
  Cc: jiaxin.wu@intel.com, siyuan.fu@intel.com, ting.ye@intel.com

Reviewed-by: Sriram Subramanian <sriram-s@hpe.com>

-----Original Message-----
From: Hegde, Nagaraj P 
Sent: Thursday, June 8, 2017 12:09 PM
To: edk2-devel@lists.01.org
Cc: jiaxin.wu@intel.com; Subramanian, Sriram <sriram-s@hpe.com>; siyuan.fu@intel.com; ting.ye@intel.com
Subject: [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect

Adding Support for the ECR for HTTP 308 redirect.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hegde Nagaraj P <nagaraj-p.hegde@hpe.com>
---
 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.<BR>
-  (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
+  (C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP<BR>
   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



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-09  7:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-08  6:39 [PATCH v1 1/1] MdePkg/Http.h: Add #define for 308 redirect hegdenag
2017-06-09  0:58 ` Wu, Jiaxin
2017-06-09  7:28 ` Subramanian, Sriram

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox