fix client install comunication

This commit is contained in:
2020-05-16 20:52:50 +02:00
parent 9f7dbd6cf7
commit 5f772f4db8
7 changed files with 23 additions and 7 deletions

View File

@@ -75,7 +75,7 @@ void conexion_client(int client){
}else{
session_manager* session = new session_manager(client);
while(session->validate_pass());
session->execute();
session->start_dialog();
delete (session);
close(client);
}