This is a low-level network debugging utility that utilizes raw packet i/o to construct and deconstruct tcp, udp, ipv4, arp, and icmp packets over ethernet.

Dependencies:   mbed

Revision:
3:c32d9660b888
Parent:
2:e8e09adc41fc
Child:
6:66c4cd9073aa
--- a/net/ethernet.h	Tue Oct 12 06:10:41 2010 +0000
+++ b/net/ethernet.h	Tue Oct 12 06:14:19 2010 +0000
@@ -5,12 +5,12 @@
 
 /// \file Ethernet frames
 
-/// Ethernet MAC address
+/// Ethernet MAC address memory map
 typedef struct {
   unsigned char octet[6]; ///< Individual octsts of the MAC address
 } Ethernet_MAC;
 
-/// Memory map for Ethernet Frame Header (according to the Ethernet II Framing Standard)
+/// Ethernet II Frame Header Memory map
 typedef struct {
   /// Destination MAC address (6 octets)
   Ethernet_MAC destination;