コード例 #1
0
ファイル: fileserver.php プロジェクト: Jaybee-/php-tftpserver
  function __construct($server_url,
		       $root = null, $rw = false, $debug = false)
  {
    parent::__construct($server_url);
    $this->_root = $root;
    $this->_rw = $rw;
    $this->_debug = $debug;
  }
コード例 #2
0
 function __construct($server_url, $url_template, $logger = NULL)
 {
   parent::__construct($server_url, $logger);
   $this->_url_template = $url_template;
 }
コード例 #3
0
ファイル: testserver.php プロジェクト: Jaybee-/php-tftpserver
 function __construct($server_url, $debug = false)
 {
   parent::__construct($server_url);
   $this->_debug = $debug;
   $this->max_put_size = 60000000;
 }
コード例 #4
0
 function __construct($server_url, $config)
 {
   parent::__construct($server_url);
   $this->_config = $config;
 }