a38a6e63b3
add: schedule api calls
15 lines
334 B
C++
15 lines
334 B
C++
#ifndef EMGAUWA_CORE_CONFIG_H
|
|
#define EMGAUWA_CORE_CONFIG_H
|
|
|
|
#include <stdint-gcc.h>
|
|
|
|
namespace config
|
|
{
|
|
extern int discover_max_client_backlog;
|
|
extern uint16_t discover_port_dev;
|
|
extern uint16_t discover_port;
|
|
extern int discover_timeout_ms;
|
|
extern uint8_t discover_code_accept;
|
|
}
|
|
|
|
#endif //EMGAUWA_CORE_CONFIG_H
|