Refactored project structure, added multithreaded echo server and prime checking server, updated tests.

This commit is contained in:
2025-07-28 17:31:05 +01:00
parent 4926cfe0d3
commit fec3f555e9
14 changed files with 621 additions and 110 deletions

17
server00.h Normal file
View File

@@ -0,0 +1,17 @@
//
// Created by Ajurna on 27/07/2025.
//
#ifndef MAIN_H
#define MAIN_H
#endif //MAIN_H
#include <winsock2.h>
#pragma once
struct EchoArgs {
int connection;
SOCKET client;
};
void *echo(void *args);