From cfc4616333a60682e8dc79a77e2093f9f0f4ebff Mon Sep 17 00:00:00 2001 From: Samer El-Haj-Mahmoud Date: Mon, 21 Sep 2015 07:53:00 +0000 Subject: [PATCH] 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 Reviewed-by: Fu Siyuan git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18520 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Include/Protocol/Http.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.
+ (C) Copyright 2015 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 @@ -54,7 +55,8 @@ typedef enum { HttpMethodHead, HttpMethodPut, HttpMethodDelete, - HttpMethodTrace + HttpMethodTrace, + HttpMethodMax } EFI_HTTP_METHOD; /// -- 2.39.2