MdePkg[all]  1.08
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EFI_NETWORK_STATISTICS Struct Reference

Data Fields

UINT64 RxTotalFrames
 
UINT64 RxGoodFrames
 
UINT64 RxUndersizeFrames
 
UINT64 RxOversizeFrames
 
UINT64 RxDroppedFrames
 
UINT64 RxUnicastFrames
 
UINT64 RxBroadcastFrames
 
UINT64 RxMulticastFrames
 
UINT64 RxCrcErrorFrames
 
UINT64 RxTotalBytes
 
UINT64 TxTotalFrames
 
UINT64 TxGoodFrames
 
UINT64 TxUndersizeFrames
 
UINT64 TxOversizeFrames
 
UINT64 TxDroppedFrames
 
UINT64 TxUnicastFrames
 
UINT64 TxBroadcastFrames
 
UINT64 TxMulticastFrames
 
UINT64 TxCrcErrorFrames
 
UINT64 TxTotalBytes
 
UINT64 Collisions
 
UINT64 UnsupportedProtocol
 
UINT64 RxDuplicatedFrames
 
UINT64 RxDecryptErrorFrames
 
UINT64 TxErrorFrames
 
UINT64 TxRetryFrames
 

Detailed Description

Simple Network Protocol data structures.

Field Documentation

UINT64 EFI_NETWORK_STATISTICS::Collisions

Number of collisions detection on this subnet.

UINT64 EFI_NETWORK_STATISTICS::RxBroadcastFrames

Number of valid broadcast frames received and not dropped.

UINT64 EFI_NETWORK_STATISTICS::RxCrcErrorFrames

Number of frames w/ CRC or alignment errors.

UINT64 EFI_NETWORK_STATISTICS::RxDecryptErrorFrames

Number of encrypted frames received that failed to decrypt.

UINT64 EFI_NETWORK_STATISTICS::RxDroppedFrames

Valid frames that were dropped because receive buffers were full.

UINT64 EFI_NETWORK_STATISTICS::RxDuplicatedFrames

Number of valid frames received that were duplicated.

UINT64 EFI_NETWORK_STATISTICS::RxGoodFrames

Number of valid frames received and copied into receive buffers.

UINT64 EFI_NETWORK_STATISTICS::RxMulticastFrames

Number of valid mutlicast frames received and not dropped.

UINT64 EFI_NETWORK_STATISTICS::RxOversizeFrames

Number of frames longer than the maxminum length for the media. This would be >1500 for ethernet.

UINT64 EFI_NETWORK_STATISTICS::RxTotalBytes

Total number of bytes received. Includes frames with errors and dropped frames.

UINT64 EFI_NETWORK_STATISTICS::RxTotalFrames

Total number of frames received. Includes frames with errors and dropped frames.

UINT64 EFI_NETWORK_STATISTICS::RxUndersizeFrames

Number of frames below the minimum length for the media. This would be <64 for ethernet.

UINT64 EFI_NETWORK_STATISTICS::RxUnicastFrames

Number of valid unicast frames received and not dropped.

UINT64 EFI_NETWORK_STATISTICS::TxBroadcastFrames
UINT64 EFI_NETWORK_STATISTICS::TxCrcErrorFrames
UINT64 EFI_NETWORK_STATISTICS::TxDroppedFrames
UINT64 EFI_NETWORK_STATISTICS::TxErrorFrames

Number of frames that failed to transmit after exceeding the retry limit.

UINT64 EFI_NETWORK_STATISTICS::TxGoodFrames
UINT64 EFI_NETWORK_STATISTICS::TxMulticastFrames
UINT64 EFI_NETWORK_STATISTICS::TxOversizeFrames
UINT64 EFI_NETWORK_STATISTICS::TxRetryFrames

Number of frames transmitted successfully after more than one attempt.

UINT64 EFI_NETWORK_STATISTICS::TxTotalBytes
UINT64 EFI_NETWORK_STATISTICS::TxTotalFrames

Transmit statistics.

UINT64 EFI_NETWORK_STATISTICS::TxUndersizeFrames
UINT64 EFI_NETWORK_STATISTICS::TxUnicastFrames
UINT64 EFI_NETWORK_STATISTICS::UnsupportedProtocol

Number of frames destined for unsupported protocol.