From f35c2fe1f3d64ba472a5d74386c0fcffe1c45aba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 18 Oct 2013 21:53:28 +0000 Subject: [PATCH] Yeah, still here. Added __METHOD__ --- .../hub/main/helper/connection/class_BaseConnectionHelper.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/hub/main/helper/connection/class_BaseConnectionHelper.php b/application/hub/main/helper/connection/class_BaseConnectionHelper.php index 64360b954..804a2fc53 100644 --- a/application/hub/main/helper/connection/class_BaseConnectionHelper.php +++ b/application/hub/main/helper/connection/class_BaseConnectionHelper.php @@ -629,8 +629,9 @@ class BaseConnectionHelper extends BaseHubSystemHelper implements Registerable, * @return void */ protected function socketErrorOperationInProgressHandler ($socketResource, array $recipientData) { + // Get socket type $type = socket_get_option($socketResource, SOL_SOCKET, SO_TYPE); - die('type='.$type.PHP_EOL); + die(__METHOD__.':type='.$type.PHP_EOL); self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __LINE__ . ']: Operation is now in progress, this is usual for non-blocking connections and is no bug.'); } } -- 2.39.5