From: Roland Haeder Date: Thu, 19 Feb 2015 08:57:39 +0000 (+0100) Subject: Added missing method isOwnAddress(). X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=a1b4efd0a7cfb351af1a6c63bfd910a41ec2903b;hp=447ec445d0342164ac4f0a141344d7760e3bf730 Added missing method isOwnAddress(). Signed-off-by: Roland Häder --- diff --git a/inc/classes/interfaces/handler/protocol/class_HandleableProtocol.php b/inc/classes/interfaces/handler/protocol/class_HandleableProtocol.php index 94370d55..c591b7a0 100644 --- a/inc/classes/interfaces/handler/protocol/class_HandleableProtocol.php +++ b/inc/classes/interfaces/handler/protocol/class_HandleableProtocol.php @@ -44,6 +44,13 @@ interface HandleableProtocol extends Handleable { * @return $isValid Whether the UNL can be validated */ function isValidUniversalNodeLocatorByPackageData (array $packageData); + + /** + * If the found UNL (address) matches own external or internal address + * + * @return $ifMatches Whether the found UNL matches own addresss + */ + function isOwnAddress (); } // [EOF]