tcpserver : do not check the client certificate in SSL mode, as there is no certificate provided by it !

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4021 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2018-01-05 14:49:53 +00:00
parent db55ec03b4
commit d54c0d8aef

View File

@@ -225,7 +225,13 @@ class tcpserver
if ($this->socket === null)
throw new \Exception ("Can not send to server $this->ipOrName : ".
"The server is not connected", 500);
// Setting the options allow the IP to be decided by the connect and valid
// the certificate of the server by the name
$options = array ("ssl" => array (
"verify_peer_name" => false,
));
stream_set_blocking ($this->socket, true);
stream_context_set_option ($this->socket, $options);
return stream_socket_enable_crypto ($this->socket, !!$val, $cryptoMethod);
}