|
---------------------------------
名称:FileZilla
类别:FTP客户端
语言:多国语言
官网:http://filezilla-project.org/
介绍:
强大,兼容性好,界面友好,跨平台,多标签,多线程
截图:
下载:http://code.google.com/p/thesnow/downloads/list
----------------------------------
默认为10线程,我改了下代码,改成了1000线程.这对FTP传输小文件是非常有利的(只要服务器支持,你就能同时下载1000个文件.)
修改方法:
1.源代码:
\FileZilla3\src\interface\settings\optionspage_transfer.cpp
pCtrl = XRCCTRL(*this, "ID_NUMTRANSFERS", wxTextCtrl);
if (!pCtrl->GetValue().ToLong(&tmp) || tmp < 1 || tmp > 10)
return DisplayError(pCtrl, _("Please enter a number between 1 and 10 for the number of concurrent transfers."));
2.已编译文件:
OD搜索下方代码
mov edx, dword ptr [ebp-20]
cmp eax, 0A
any
sub edx, 0C
mov eax, dword ptr [edx]
cmp eax, -1
把cmp eax, 0A中的0A改为其它16进制数.LIKE:7A |
评分
-
查看全部评分
|