12 lines
306 B
C
12 lines
306 B
C
|
#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
|