_server = $server; } /** * @return Array */ public static function getDefaultConfig() { return Array( 'domain' => AF_INET , 'type' => SOCK_STREAM , 'protocol' => SOL_TCP , 'options' => Array( SOL_SOCKET => Array(SO_REUSEADDR => 1) ) ); } public function attatchApplication(ApplicationInterface $app) {} public function run($address = '127.0.0.1', $port = 1025) { } }