Exemplo n.º 1
0
 /**
  * constructor of steam_connector:
  * 
  * The functions initializes some variables through init() when envoked.
  * Arguments are all optional. If arguments are given, steam_connector
  * tries to connect to the defined sTeam-server.
  * Examples:
  * - <code>$steam = new steam_connector( "steam.upb.de", 1900, "aroth", "secret" );</code>
  * - <code>$steam = new steam_connector( "192.168.104.100", 1900 );</code>
  * - <code>$steam = new steam_connector();</code>
  *
  * @param string  $pServerIP	IP or hostname of a sTeam-server
  * @param integer $pServerPort	server's port for COAL-protocol
  * @param string  $pLogin	user's login
  * @param string  $pPassword	user's password
  */
 public function __construct($pServerIp = "", $pServerPort = "", $pLoginName = "", $pLoginPassword = "")
 {
     parent::__construct($pServerIp, $pServerPort, $pLoginName, $pLoginPassword);
 }