adding types

This commit is contained in:
Zakir Durumeric 2013-08-26 07:59:54 -04:00
parent ea39b3bac4
commit 211307e308
1 changed files with 11 additions and 0 deletions

11
src/types.h Normal file
View File

@ -0,0 +1,11 @@
#include <stdint.h>
#ifndef TYPES_H_
#define TYPES_H_
typedef uint32_t ipaddr_n_t; // IPv4 address network order
typedef uint32_t ipaddr_h_t; // IPv4 address host order
typedef uint16_t port_n_t; // port network order
typedef uint16_t port_h_t; // port host order
typedef unsigned char macaddr_t;
#endif