SIMPLE_NETWORK Protocol
Version 1.02 12/12/00 291
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;
} EFI_NETWORK_STATISTICS;
RxTotalFrames Total number of frames received. Includes frames with errors
and dropped frames.
RxGoodFrames Number of valid frames received and copied into receive buffers.
RxUndersizeFrames Number of frames below the minimum length for the media.
This would be less than64 for ethernet.
RxOversizeFrames Number of frames longer than the maxminum length for the
media. This would be greater than 1500 for ethernet.
RxDroppedFrames Valid frames that were dropped because receive buffers were
full.
RxUnicastFrames Number of valid unicast frames received and not dropped.
RxBroadcastFrames Number of valid broadcast frames received and not dropped.
RxMulticastFrames Number of valid mutlicast frames received and not dropped.
RxCrcErrorFrames Number of frames w/ CRC or alignment errors.
RxTotalBytes Total number of bytes received. Includes frames with errors and
dropped frames.
TxTotalFrames Total number of frames transmitted. Includes frames with errors
and dropped frames.
TxGoodFrames Number of valid frames transmitted and copied into receive
buffers.
TxUndersizeFrames Number of frames below the minimum length for the media.
This would be less than 64 for ethernet.