Finish remove user implementation

This commit is contained in:
2020-05-26 01:37:34 +02:00
parent 2783e385a4
commit b0c78dde76
7 changed files with 23 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ void conexion_ssl::start_server(){
while(1) {
struct sockaddr_in addr;
uint len = sizeof(addr);
int client = accept(sock, (struct sockaddr*)&addr, &len);
std::thread t_client(conexion_client,ctx , client);
t_client.detach();