summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamer El-Haj-Mahmoud <samer.el-haj-mahmoud@hpe.com>2015-09-21 07:53:00 +0000
committersfu5 <sfu5@Edk2>2015-09-21 07:53:00 +0000
commitcfc4616333a60682e8dc79a77e2093f9f0f4ebff (patch)
tree4cae85ec27d9e01d34ceeadfd505196645b3d78e
parent255c8e22a5171fc52d0e7c297b2267e83d48bd5c (diff)
downloadedk2-platforms-cfc4616333a60682e8dc79a77e2093f9f0f4ebff.tar.xz
MdePkg: Http.h - Add HttpMethodMax to EFI_HTTP_METHOD.
Add HttpMethodMax enum value to EFI_HTTP_METHOD to make it easier to iterate through the HTTP methods using a loop. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@hpe.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18520 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--MdePkg/Include/Protocol/Http.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/MdePkg/Include/Protocol/Http.h b/MdePkg/Include/Protocol/Http.h
index b1f8c51341..64b31213a4 100644
--- a/MdePkg/Include/Protocol/Http.h
+++ b/MdePkg/Include/Protocol/Http.h
@@ -5,6 +5,7 @@
HTTP Protocol (HTTP)
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
+ (C) Copyright 2015 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
@@ -54,7 +55,8 @@ typedef enum {
HttpMethodHead,
HttpMethodPut,
HttpMethodDelete,
- HttpMethodTrace
+ HttpMethodTrace,
+ HttpMethodMax
} EFI_HTTP_METHOD;
///