From 9132a8f8b249b41e5db5b430dd7f5f246e5e71e3 Mon Sep 17 00:00:00 2001 From: Jiaxin Wu Date: Fri, 29 Jan 2016 06:45:39 +0000 Subject: MdePkg: Remove magic number This patch is used to update structure of EFI_IP4_CONFIG2_INTERFACE_INFO to remove magic number. Cc: Fu Siyuan Cc: Ye Ting Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiaxin Wu Reviewed-by: Ye Ting Reviewed-by: Siyuan Fu git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19769 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Include/Protocol/Ip4Config2.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/MdePkg/Include/Protocol/Ip4Config2.h b/MdePkg/Include/Protocol/Ip4Config2.h index 383da8a4e0..fca2bb5e2d 100644 --- a/MdePkg/Include/Protocol/Ip4Config2.h +++ b/MdePkg/Include/Protocol/Ip4Config2.h @@ -2,7 +2,7 @@ This file provides a definition of the EFI IPv4 Configuration II Protocol. -Copyright (c) 2015, Intel Corporation. All rights reserved.
+Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
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
@@ -75,6 +75,11 @@ typedef enum { Ip4Config2DataTypeMaximum } EFI_IP4_CONFIG2_DATA_TYPE; +/// +/// EFI_IP4_CONFIG2_INTERFACE_INFO related definitions +/// +#define EFI_IP4_CONFIG2_INTERFACE_INFO_NAME_SIZE 32 + /// /// EFI_IP4_CONFIG2_INTERFACE_INFO /// @@ -82,7 +87,7 @@ typedef struct { /// /// The name of the interface. It is a NULL-terminated Unicode string. /// - CHAR16 Name[32]; + CHAR16 Name[EFI_IP4_CONFIG2_INTERFACE_INFO_NAME_SIZE]; /// /// The interface type of the network interface. See RFC 1700, /// section "Number Hardware Type". -- cgit v1.2.3