diff options
author | hegdenag <nagaraj-p.hegde@hpe.com> | 2017-06-08 14:39:03 +0800 |
---|---|---|
committer | Fu Siyuan <siyuan.fu@intel.com> | 2017-06-09 15:37:21 +0800 |
commit | 8ab9f7690ee9a2ca198509b692a457b7409dfc1b (patch) | |
tree | 5cb0d1470731be8ff30de21abc3e3f10ec9934a0 | |
parent | c1f4b86ba786cc9cbe5c88a05abc9bf0554b1cc8 (diff) | |
download | edk2-8ab9f7690ee9a2ca198509b692a457b7409dfc1b.zip edk2-8ab9f7690ee9a2ca198509b692a457b7409dfc1b.tar.gz edk2-8ab9f7690ee9a2ca198509b692a457b7409dfc1b.tar.bz2 |
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>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
Reviewed-by: Sriram Subramanian <sriram-s@hpe.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
-rw-r--r-- | MdePkg/Include/Protocol/Http.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/Http.h b/MdePkg/Include/Protocol/Http.h index 269416c..f7a9aa6 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;
///
|