Upcoming rewrite to universal node locator (UNL) instead of "hard-wired"
authorRoland Haeder <roland@mxchange.org>
Sat, 25 Oct 2014 11:11:40 +0000 (13:11 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 25 Oct 2014 11:11:40 +0000 (13:11 +0200)
ip:port combination. This change is only a name change of variables and does
currently hurt or change nothing.

Signed-off-by: Roland Häder <roland@mxchange.org>
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
                // 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?
 
                // 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;
 
                // Return result
                return $matches;
@@ -87,7 +87,7 @@ class SocketContainer extends BaseContainer implements Registerable {
        /**
         * Checks whether the given socket matches with stored
         *
        /**
         * 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) {
         * @return      $matches                Whether given socket matches
         */
        public final function ifSocketResourceMatches ($socketResource) {