1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

Fixed redundant output in SHOW ETHERNET when ethernet devices are open and added device send/receive stats

This commit is contained in:
Mark Pizzolato
2013-03-22 14:30:48 -07:00
parent 01ee219f01
commit e2bb312dd8
2 changed files with 19 additions and 21 deletions

View File

@@ -235,6 +235,8 @@ struct eth_device {
uint32 jumbo_fragmented; /* Giant IPv4 Frames Fragmented */
uint32 jumbo_dropped; /* Giant Frames Dropped */
uint32 jumbo_truncated; /* Giant Frames too big for capture buffer - Dropped */
uint32 packets_sent; /* Total Packets Sent */
uint32 packets_received; /* Total Packets Received */
DEVICE* dptr; /* device ethernet is attached to */
uint32 dbit; /* debugging bit */
int reflections; /* packet reflections on interface */