/**
* Checks whether the given Universal Node Locator matches with the one from package data
*
- * @param $unl The an Universal Node Locator
+ * @param $unlInstance An instance of a LocateableNode class
* @return $matches Whether $address matches with the one from package data
*/
- public final function ifAddressMatches ($unl) {
+ public final function ifAddressMatches (LocateableNode $unlInstance) {
// Get current package data
$packageData = $this->getPackageData();
// Debug message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: unl=' . $unl . ',packageData=' . print_r($packageData, TRUE));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: unlInstance=' . print_r($unlInstance, TRUE) . ',packageData=' . print_r($packageData, TRUE));
// So, does both match?
- $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $unl));
+ die(__METHOD__ . ': Unfinished.' . PHP_EOL);
+ $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $unlInstance));
// Return result
return $matches;
/**
* Checks whether the given socket matches with stored
*
- * @param $unl The an Universal Node Locator
+ * @param $unlInstance An instance of a LocateableNode class
* @return $matches Whether given socket matches
*/
public final function ifSocketResourceMatches ($socketResource) {