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:
8:1c1f6ce348c6
Parent:
6:66c4cd9073aa

File content as of revision 8:1c1f6ce348c6:

#ifndef TYPES_H
#define TYPES_H

/**
  \file types.h
  \brief Type definitions
  
  This file contains some utility type definitions
*/

/// 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