From: Roland Haeder Date: Fri, 17 Oct 2014 18:01:57 +0000 (+0200) Subject: Updated from hub code. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=e89f5278e0b2e7e382bfe12bc8b3f04c895ee94c Updated from hub code. Signed-off-by: Roland Häder --- diff --git a/inc/classes/interfaces/handler/protocol/class_ProtocolHandler.php b/inc/classes/interfaces/handler/protocol/class_ProtocolHandler.php index e06b6956..ed8c11e3 100644 --- a/inc/classes/interfaces/handler/protocol/class_ProtocolHandler.php +++ b/inc/classes/interfaces/handler/protocol/class_ProtocolHandler.php @@ -1,6 +1,6 @@ * @version 0.0.0 @@ -22,6 +22,19 @@ * along with this program. If not, see . */ interface ProtocolHandler extends Handleable { + /** + * Getter for port number to satify ProtocolHandler + * + * @return $port The port number + */ + function getPort (); + + /** + * Getter for protocol name + * + * @return $protocol Name of used protocol + */ + function getProtocolName (); } // [EOF]