TCPServerUtility.h 157 B

12345
  1. #pragma once
  2. int setup_tcp_server_socket(const char *service);
  3. int accept_tcp_connection(const int serv_sock);
  4. void HandleTCPClient(const int client_sock);