core-legacy/helpers.h

24 lines
479 B
C
Raw Normal View History

2019-07-14 22:39:37 +00:00
#ifndef EMGAUWA_CORE_HELPERS_H
#define EMGAUWA_CORE_HELPERS_H
2019-07-19 09:41:39 +00:00
#include <json/value.h>
#include <models/period.h>
#include <models/period_list.h>
2019-07-14 22:39:37 +00:00
namespace helpers
{
int
bind_tcp_server(const char *addr, const char *port, int max_client_backlog);
int
get_server_port(int fd);
int
2019-07-20 12:51:45 +00:00
send_udp_broadcast(const char *addr, uint16_t port, const char* message);
2019-07-19 09:41:39 +00:00
period_list*
parse_periods(Json::Value periods_json);
2019-07-14 22:39:37 +00:00
}
#endif //EMGAUWA_CORE_HELPERS_H