]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/container/socket/class_SocketContainer.php
Upcoming rewrite to universal node locator (UNL) instead of "hard-wired"
[core.git] / inc / classes / main / container / socket / class_SocketContainer.php
index 1b3c997f1488a6e6702174d4901f5bedb4c7ea62..4b5ab63c9a96ace83455ffbfcd01445a3cad4012 100644 (file)
@@ -65,20 +65,20 @@ class SocketContainer extends BaseContainer implements Registerable {
        }
 
        /**
-        * Checks whether the given address (IP) matches with the one from the socket resource
+        * Checks whether the given universal node locator matches with the one from package data
         *
-        * @param       $addressPort    The address:port (IP to check
-        * @return      $matches                Whether $address matches with the one from socket resource
+        * @param       $unl            The an universal node locator
+        * @return      $matches        Whether $address matches with the one from package data
         */
-       public final function ifAddressMatches ($addressPort) {
+       public final function ifAddressMatches ($unl) {
                // Get current package data
                $packageData = $this->getPackageData();
 
                // Debug message
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: addressPort=' . $addressPort . ',packageData=' . print_r($packageData, TRUE));
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: unl=' . $unl . ',packageData=' . print_r($packageData, TRUE));
 
                // So, does both match?
-               $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $addressPort));
+               $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $unl));
 
                // Return result
                return $matches;
@@ -87,7 +87,7 @@ class SocketContainer extends BaseContainer implements Registerable {
        /**
         * Checks whether the given socket matches with stored
         *
-        * @param       $addressPort    The address:port (IP to check
+        * @param       $unl    The an universal node locator
         * @return      $matches                Whether given socket matches
         */
        public final function ifSocketResourceMatches ($socketResource) {