core-legacy/helpers.h

17 lines
327 B
C
Raw Normal View History

2019-07-14 22:39:37 +00:00
#ifndef EMGAUWA_CORE_HELPERS_H
#define EMGAUWA_CORE_HELPERS_H
namespace helpers
{
int
bind_tcp_server(const char *addr, const char *port, int max_client_backlog);
int
get_server_port(int fd);
int
send_udp_broadcast(const char *addr, int port, const char* message);
}
#endif //EMGAUWA_CORE_HELPERS_H