config.socketsrv.php

来自「flashget43的源代码 一个比较常用的下载程序」· PHP 代码 · 共 9 行

PHP
9
字号
<?php
		$GLOBALS['fc_config']['socketServer'] = array(
						'host' => 'elf',  //domain to bind to (host name of your server), Note: "localhost" you can use only for local testing
						'port' => '9090',  //port to listen (> 1024, it is some big value up to 65536)  
						'max_clients' => 100,  //maximum amount of clients
						'debug_mode'  => 'text',  //type of debug mode (false, 'text' or 'html')
						'log_file'    => 'socketServer.log'  //debug destination (filename or 'stdout')
		);
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?