#include <SimpleNetwork.h>
Data Fields | |
| UINT64 | RxTotalFrames |
| Total number of frames received. | |
| UINT64 | RxGoodFrames |
| Number of valid frames received and copied into receive buffers. | |
| UINT64 | RxUndersizeFrames |
| Number of frames below the minimum length for the media. | |
| UINT64 | RxOversizeFrames |
| Number of frames longer than the maxminum length for the media. | |
| UINT64 | RxDroppedFrames |
| Valid frames that were dropped because receive buffers were full. | |
| UINT64 | RxUnicastFrames |
| Number of valid unicast frames received and not dropped. | |
| UINT64 | RxBroadcastFrames |
| Number of valid broadcast frames received and not dropped. | |
| UINT64 | RxMulticastFrames |
| Number of valid mutlicast frames received and not dropped. | |
| UINT64 | RxCrcErrorFrames |
| Number of frames w/ CRC or alignment errors. | |
| UINT64 | RxTotalBytes |
| Total number of bytes received. | |
| UINT64 | TxTotalFrames |
| Transmit statistics. | |
| UINT64 | TxGoodFrames |
| UINT64 | TxUndersizeFrames |
| UINT64 | TxOversizeFrames |
| UINT64 | TxDroppedFrames |
| UINT64 | TxUnicastFrames |
| UINT64 | TxBroadcastFrames |
| UINT64 | TxMulticastFrames |
| UINT64 | TxCrcErrorFrames |
| UINT64 | TxTotalBytes |
| UINT64 | Collisions |
| Number of collisions detection on this subnet. | |
| UINT64 | UnsupportedProtocol |
| Number of frames destined for unsupported protocol. | |
Definition at line 41 of file SimpleNetwork.h.
Total number of frames received.
Includes frames with errors and dropped frames.
Definition at line 46 of file SimpleNetwork.h.
Referenced by efi_snp_statistics().
Number of valid frames received and copied into receive buffers.
Definition at line 51 of file SimpleNetwork.h.
Referenced by efi_snp_statistics().
Number of frames below the minimum length for the media.
This would be <64 for ethernet.
Definition at line 57 of file SimpleNetwork.h.
Number of frames longer than the maxminum length for the media.
This would be >1500 for ethernet.
Definition at line 63 of file SimpleNetwork.h.
Valid frames that were dropped because receive buffers were full.
Definition at line 68 of file SimpleNetwork.h.
Referenced by efi_snp_statistics().
Number of valid unicast frames received and not dropped.
Definition at line 73 of file SimpleNetwork.h.
Number of valid broadcast frames received and not dropped.
Definition at line 78 of file SimpleNetwork.h.
Number of valid mutlicast frames received and not dropped.
Definition at line 83 of file SimpleNetwork.h.
Total number of bytes received.
Includes frames with errors and dropped frames.
Definition at line 94 of file SimpleNetwork.h.
Transmit statistics.
Definition at line 99 of file SimpleNetwork.h.
Referenced by efi_snp_statistics().
Definition at line 101 of file SimpleNetwork.h.
Definition at line 102 of file SimpleNetwork.h.
Definition at line 104 of file SimpleNetwork.h.
Definition at line 105 of file SimpleNetwork.h.
Definition at line 106 of file SimpleNetwork.h.
Definition at line 107 of file SimpleNetwork.h.
Definition at line 108 of file SimpleNetwork.h.
1.5.7.1