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:
6:66c4cd9073aa
Parent:
4:88fc7fa58931

File content as of revision 6:66c4cd9073aa:

#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