]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/helper/connection/class_BaseConnectionHelper.php
Added MD5 hashes only for debugging purposes
[hub.git] / application / hub / main / helper / connection / class_BaseConnectionHelper.php
index 89f2a7f6a14e69fa0952f08d5eaf383cb44f22b1..c9f1596ae9c56e1ccf6b80da805731054026aeb5 100644 (file)
@@ -423,7 +423,7 @@ class BaseConnectionHelper extends BaseHubHelper implements Registerable, Protoc
                // Deliver all data
                while ($sentBytes !== false) {
                        // And deliver it
-                       /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER: Sending out ' . strlen($encodedData) . ' bytes,bufferSize=' . $bufferSize . ',diff=' . $this->diff);
+                       /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER: Sending out ' . strlen($encodedData) . ' bytes,MD5=' . md5($encodedData) . ',bufferSize=' . $bufferSize . ',diff=' . $this->diff);
                        if ($this->diff >= 0) {
                                // Send all out (encodedData is smaller than or equal buffer size)
                                $sentBytes = socket_write($socketResource, $encodedData, ($bufferSize - $this->diff));