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

util/types.h

Committer:
etherealflaim
Date:
2010-10-12
Revision:
4:88fc7fa58931
Parent:
0:d494b853ce97
Child:
6:66c4cd9073aa

File content as of revision 4:88fc7fa58931:

#ifndef TYPES_H
#define TYPES_H

/// Unsigned 8 bit value
typedef unsigned char u8;

/// Unsigned 16 bit value
typedef unsigned short u16;

/// Unsigned 32 bit value
typedef unsigned int u32;

#endif