From 5b15c25e34604efa469b584709a48167b5d21c76 Mon Sep 17 00:00:00 2001 From: mjansen Date: Mon, 26 Jan 2026 07:58:31 +0100 Subject: [PATCH] WebServices: Replace `socket_set_timeout` with `stream_set_timeout` --- components/ILIAS/soap/lib/nusoap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ILIAS/soap/lib/nusoap.php b/components/ILIAS/soap/lib/nusoap.php index 3759b3f724ec..90543de5a412 100755 --- a/components/ILIAS/soap/lib/nusoap.php +++ b/components/ILIAS/soap/lib/nusoap.php @@ -2372,7 +2372,7 @@ public function connect($connection_timeout = 0, $response_timeout = 30) // set response timeout $this->debug('set response timeout to ' . $response_timeout); - socket_set_timeout($this->fp, $response_timeout); + stream_set_timeout($this->fp, $response_timeout); $this->debug('socket connected'); return true;