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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers types.h Source File

types.h

Go to the documentation of this file.
00001 #ifndef TYPES_H
00002 #define TYPES_H
00003 
00004 /**
00005   \file types.h
00006   \brief Type definitions
00007   
00008   This file contains some utility type definitions
00009 */
00010 
00011 /// Unsigned 8 bit value
00012 typedef unsigned char u8;
00013 
00014 /// Unsigned 16 bit value
00015 typedef unsigned short u16;
00016 
00017 /// Unsigned 32 bit value
00018 typedef unsigned int u32;
00019 
00020 #endif