diff options
author | tye <tye@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-11-11 07:05:49 +0000 |
---|---|---|
committer | tye <tye@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-11-11 07:05:49 +0000 |
commit | 0424593539571162530df9f3179f5c6851a01577 (patch) | |
tree | c9b22ee18d3a8d80b445ab45d2ea6f816a30e893 /MdePkg | |
parent | ae76fe74d23fd771b109ed6fa9a8e4e9b67cfbf3 (diff) | |
download | edk2-platforms-0424593539571162530df9f3179f5c6851a01577.tar.xz |
1. Update EFI_IP4_MODE_DATA: add MaxPacketSize to this structure to comply with UEFI 2.3 specification.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9412 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Protocol/Ip4.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MdePkg/Include/Protocol/Ip4.h b/MdePkg/Include/Protocol/Ip4.h index 246104dcc5..15ec514d80 100644 --- a/MdePkg/Include/Protocol/Ip4.h +++ b/MdePkg/Include/Protocol/Ip4.h @@ -143,6 +143,10 @@ typedef struct { ///
BOOLEAN IsStarted;
///
+ /// The maximum packet size, in bytes, of the packet which the upper layer driver could feed.
+ ///
+ UINT32 MaxPacketSize;
+ ///
/// Current configuration settings.
///
EFI_IP4_CONFIG_DATA ConfigData;
|