From: Roland Häder Date: Fri, 18 Oct 2013 21:53:28 +0000 (+0000) Subject: Yeah, still here. Added __METHOD__ X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f35c2fe1f3d64ba472a5d74386c0fcffe1c45aba;p=hub.git Yeah, still here. Added __METHOD__ --- 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.'); } }