16 lines
277 B
C++
16 lines
277 B
C++
#include "socket_up.h"
|
|
#include "socket_handler.h"
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
SOCKET listenSocket = SocketUp::config_socket_windows();
|
|
SocketHandler::working_with_client_windows(listenSocket);
|
|
|
|
closesocket(listenSocket);
|
|
WSACleanup();
|
|
|
|
return 0;
|
|
} |