From bdaf56316954dd967f1f02fb9ab8cf23c9844f8d Mon Sep 17 00:00:00 2001 From: "johan.lachenal" Date: Fri, 6 Jan 2023 01:13:46 +0100 Subject: [PATCH] test --- WEB/Client/Client.php | 1 + 1 file changed, 1 insertion(+) diff --git a/WEB/Client/Client.php b/WEB/Client/Client.php index 0ede712e..13047f3d 100644 --- a/WEB/Client/Client.php +++ b/WEB/Client/Client.php @@ -5,6 +5,7 @@ class Client{ private Socket $socket; private function __construct() { // Créer une socket + var_dump(socket_create(AF_INET, SOCK_STREAM,0)); $this->socket = socket_create(AF_INET, SOCK_STREAM,0) or die("la socket n'a pas pu être crée\n"); }