MdePkg:Add new traffic statistics definition for Wireless NIC.

Add New traffic statistics  which will be used by wireless NIC.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Zhang Lubo <lubo.zhang@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19759 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Zhang Lubo
2016-01-28 02:40:01 +00:00
committed by luobozhang
parent ce22514e48
commit b4bddb6eca
2 changed files with 41 additions and 2 deletions

View File

@ -9,7 +9,7 @@
MCast - MultiCast
...
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available under
the terms and conditions of the BSD License that accompanies this distribution.
The full text of the license may be found at
@ -121,6 +121,25 @@ typedef struct {
///
UINT64 UnsupportedProtocol;
///
/// Number of valid frames received that were duplicated.
///
UINT64 RxDuplicatedFrames;
///
/// Number of encrypted frames received that failed to decrypt.
///
UINT64 RxDecryptErrorFrames;
///
/// Number of frames that failed to transmit after exceeding the retry limit.
///
UINT64 TxErrorFrames;
///
/// Number of frames transmitted successfully after more than one attempt.
///
UINT64 TxRetryFrames;
} EFI_NETWORK_STATISTICS;
///