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
279 B
11 lines
279 B
#ifndef CUSTOM_TYPES_H_
|
|
#define CUSTOM_TYPES_H_
|
|
|
|
typedef enum LOG_LEVEL {DEBUG, INFO, WARN, ERROR} LOG_LEVEL;
|
|
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_
|
|
|