<?php
/**
- * A protocol handler interface
+ * An interface for protocol handlers
*
* @author Roland Haeder <webmaster@shipsimu.org>
* @version 0.0.0
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
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]