}
/**
- * 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;
/**
* 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) {