core-legacy/config.h

16 lines
334 B
C
Raw Normal View History

2019-07-14 22:39:37 +00:00
#ifndef EMGAUWA_CORE_CONFIG_H
#define EMGAUWA_CORE_CONFIG_H
2019-07-20 12:51:45 +00:00
#include <stdint-gcc.h>
2019-07-14 22:39:37 +00:00
namespace config
{
extern int discover_max_client_backlog;
2019-07-20 12:51:45 +00:00
extern uint16_t discover_port_dev;
extern uint16_t discover_port;
2019-07-19 09:41:39 +00:00
extern int discover_timeout_ms;
2019-07-20 12:51:45 +00:00
extern uint8_t discover_code_accept;
2019-07-14 22:39:37 +00:00
}
#endif //EMGAUWA_CORE_CONFIG_H