Server restart without closing, added more info

This commit is contained in:
Shoghi Cervantes Pueyo
2012-12-12 00:07:55 +01:00
parent 29d253fd93
commit fb019a88c1
6 changed files with 26 additions and 9 deletions

View File

@ -26,7 +26,7 @@ the Free Software Foundation, either version 3 of the License, or
*/
class ServerAPI extends stdClass{ //Yay! I can add anything to this class in runtime!
var $server;
var $server, $restart = false;
private $config, $apiList = array();
function __construct(){
console("[INFO] Starting ServerAPI server handler...");
@ -260,6 +260,7 @@ class ServerAPI extends stdClass{ //Yay! I can add anything to this class in run
public function start(){
$this->server->start();
return $this->restart;
}