You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
218 B
11 lines
218 B
5 years ago
|
#ifndef CUSTOM_TYPES_H_
|
||
|
#define CUSTOM_TYPES_H_
|
||
|
|
||
|
typedef uint16_t node_id_t;
|
||
|
typedef struct sockaddr_in address_t;
|
||
|
typedef uint64_t timestamp_t;
|
||
|
typedef char *ipv4_t;
|
||
|
typedef uint16_t port_t;
|
||
|
|
||
|
#endif //CUSTOM_TYPES_H_
|