UG3.0 64位可以跟UG12.0虚拟机安装win7 64位在一起么win10求虚拟机安装win7 64位教程 谢谢

indy 10终于随着Delphi2005发布了,不过indy套件在我的印象中总是复杂并且BUG不断,说实话,不是看在他一整套组件的面子上,我还是喜欢VCL原生的Socket组件,简洁,清晰。Indy9发展到了indy10几乎完全不兼容,可叹啊。言归正传。在使用IdTCPServer组件的时候发现了他的漏洞,他的OnConnec,OnExecute,OnDisconnect等事件是在其他线程中执行的,通常情况下这没有问题,但是在特殊的情况下会造成问题,如果其他部分的程序写得有问题就会出现漏洞。
我发现的漏洞是这样的,我在OnDisconnect事件中释放一个ListView的一个对应的Item,也就是,一个客户端离开的时候,界面上的ListView对应的项目删除。正常情况没有任何问题,但是,如果不断开连接直接关闭程序就会死掉,事实上我在程序中Form的CloseQuery事件中作了处理,在这个事件中我关闭连接,但是,没有效果,只有在程序中手动的点鼠标关闭才不会死掉,问题出在哪里?
问题出在这里,ListView是一个Windows的标准组件,释放他的一个Item是通过消息完成的,也就是说,我在OnDisconnect中在一个非主线程的线程中向主线程的窗口发送消息并且等待返回。而此时主线程在干嘛呢?因为是主线程触发的DisConnect,所以他在等待这个端口的服务线程挂起,这样就发生死锁,问题在于,主线程的等待服务线程挂起的处理代码不当,它理论上应该在等待同时处理消息。原代码如下所示
procedure TIdSchedulerOfThread.TerminateYarn(AYarn: TIdYarn);var& LYarn: TIdYarnOfTbegin& LYarn := TIdYarnOfThread(AYarn);& if LYarn.Thread.Suspended then begin&&&&&&&&&&&&&&&&&&&&&&&&&&&& //判断是否挂起了,挂起了才释放线程&&& // If suspended, was created but never started&&& // ie waiting on connection accept&&& LYarn.Thread.F&&& FreeAndNil(LYarn);& end else begin&&& // Is already running and will free itself&&& LYarn.Thread.S&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //没完没了的调用Stop过程,却不处理任何消息和同步事件&&&&& // Dont free the yarn. The thread frees it (IdThread.pas)&
它的上一级调用者,没完没了的判断服务线程数量,然后没完没了地调用上面这个函数,调用者原代码如下
procedure TIdTCPServer.TerminateAllTvar& i: Ibegin& // TODO:& reimplement support for TerminateWaitTimeout
& //BGO: find out why TerminateAllThreads is sometimes called multiple times& //Kudzu: Its because of notifications. It calls shutdown when the Scheduler is& // set to nil and then again on destroy.& if Contexts && nil then begin&&& with Contexts.LockList do try&&&&& for i := 0 to Count - 1 do begin&&&&&&& // Dont call disconnect with true. Otheriwse it frees the IOHandler and the thread&&&&&&& // is still running which often causes AVs and other.&&&&&&& TIdContext(Items[i]).Connection.Disconnect(False);&&&&&&&& finally Contexts.UnLockL&
& // Scheduler may be nil during destroy which calls TerminateAllThreads& // This happens with explicit schedulers& if Scheduler && nil then begin&&& Scheduler.TerminateAllY&
说实话,我很不理解indy线程对象又是stop又是start的复杂模型意义何在,而且非常容易出问题,简单的线程模型更加可靠和实用。
修改的方法很简单,但是考虑到兼容Linux和其他平台的问题,还必须进行隔离分解层次,所以稍微复杂了一点点。就是在idThread类中增加一个公开的方法ProcessMessages,然后在TerminateYarn中调用。代码如下
procedure TIdThread.ProcessMbegin{$IFDEF MSWINDOWS}& if GetCurrentThreadID = MainThreadID then& begin&&& CheckS&&& Application.ProcessM&{$ENDIF}{$IFDEF LINUX}& if GetCurrentThreadID = MainThreadID then& begin&&& CheckSynchronize(1000);&{$ENDIF}
procedure TIdSchedulerOfThread.TerminateYarn(AYarn: TIdYarn);var& LYarn: TIdYarnOfTbegin& LYarn := TIdYarnOfThread(AYarn);& if LYarn.Thread.Suspended then begin&&& // If suspended, was created but never started&&& // ie waiting on connection accept&&& LYarn.Thread.F&&& FreeAndNil(LYarn);& end else begin&&& // Is already running and will free itself&&& LYarn.Thread.S&&& LYarn.Thread.ProcessM&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //此处增加了处理。&&& // Dont free the yarn. The thread frees it (IdThread.pas)&
TidThread所在单元增加uses
{$IFDEF MSWINDOWS}& Windows, Forms,{$ENDIF}至此程序正常。
虽然理论上,在其他线程中访问VCL组件应当使用线程同步方法,但是在这个例子中由于工作线程包装太深已经无法使用线程同步方法了,其实在这个例子中即使使用了线程同步方法来访问VCL也无济于事,因为在等待线程结束的程序中根本没有检查主线程的未结消息和线程同步事件(Delphi7以后版本线程同步方法使用事件event作为同步方法,Delphi7之前使用消息同步)一样会死锁。
其实VCL并没有强制主线程访问,他的说明是这样的,它要求在任何时候应当只有一个线程访问VCL的相关代码(不同的线程同时访问不相关的VCL代码段是没有问题的),所以,不使用线程同步方法访问VCL也是可以的,但是要使用其他方法保证访问的唯一,比如可以使用临界区。
下面是使用SSL的心得。
开源给我的印象真的是越来越糟糕,早些时候处理MySQL的版本兼容性就觉得受不了,文档不全,版本差异显著,不同版本的外部接口不一致,甚至都不知道要保持向下兼容性,范例少,没事就是叫你去看源程序,说实话大多数时候做开发哪有那么多时间去人家的源程序啊,一会儿pascal,一会儿C++,一会儿在Pascal中不打;结尾,一会儿在C++写起了begin end,累啊。
indy中的SSL组件是IdServerIOHandlerSSLOpenSSL和IdSSLIOHandlerSocketOpenSSL,前一个用在服务器,后一个用在客户端。
刚开始用,找不到DLL,我想大家都遇到,看了半天E文,哦,他用OpenSSL的,哪个是什么玩艺?下载一个吧,原来是开源项目,还是多平台的,我日,要我安装perl生成mack文件,还要安装VC6才能编译成二进制代码,晕,我只要2个DLL,不至于这么折腾我吧。算了,再去找,哦?有编译好的下载,不错。有个最新版的好像是0.9.7c不过比我那个源代码的0.9.8版本低了一点,算了不管了,下载完毕,拷贝DLL过去,我日,版本不对,DLL外部接口函数不正确。indy究竟用哪个版本的呢?在indy官网上看了半天他也没说他的indy10基于哪个版本的,可见这种组件供应商的素质。没辙,下载了一Demo,Demo中包含了这两个DLL,好,拷贝过去,能够用,总算开工了。
开工了,它不工作,看帮助,indy的帮助啥也没有,有的简陋到居然只有一句话,这是个string类型的属性,这要她说吗?没辙,只好看Demo去(我现在有点理解开源的含义了),这么多年养成的好习惯都费了,以前做开发,用到新组件,首先就是看官方帮助,微软的那个帮助叫做详细啊,完了,现在第一件事情是去看Demo,还不知道是不是标准的范例,不知道是不是能够涵盖所有的内容。看了半天范例,原来要证书文件,我也够蠢的,SSL没证书怎么玩?证书?怎么办?看了半天,我应该需要一个自签名的根证书,然后需要一个二级证书,最后是key文件。其实我只需要一个自签名的证书就可以了。怎么搞?windows下没一个工具可以产生新证书的,IIS有,但是证书文件不知道给他藏在什么地方了。只好用openSSL生成新证书。
搞了一整天,终于看明白了OpenSLL的关键指令,大致结构有个模糊的印象,先产生一个key文件,然后用这个Key文件产生一个自签名的证书,这个证书可以作为根证书使用,更多的方法就不知道了,key文件要用des加密,用其他的加密,indy不能识别。crt要用x509协议。具体的openSSL指令如下,十多年没用DOS界面了,看样子要练练指法了。
产生一个key,当然要先启动openSSL,一个Dos界面,专业点吧,命令行界面,或者叫做XXXXXX
openssl&genrsa -des3 -out -voiceService.key 1024下面是OpenSSL的反应
Loading 'screen' into random state - doneGenerating RSA private key, 1024 bit long modulus............................................................................++++++........++++++e is 601)Enter pass phrase for -ca.key:123456Verifying - Enter pass phrase for -ca.key:123456
123456是你输入的密码,高版本的OpenSSL不会显示的。
产生自签名证书
req -new -x509 -days 3650 -key voiceService.key -out voiceService.crt -f
注意f文件是配置文件,可以自己编辑用edit编辑,不要用记事本。不过一般用自带的,比较混蛋的是你下载的编译好的openssl里面没这个文件,只有下载源代码的才有,拷贝到openssl一起的目录,或者你喜欢的其他目录。
openssl的反应
Enter pass phrase for ca.key:You are about to be asked to enter information that will be incorporatedinto your certificate request.What you are about to enter is what is called a Distinguished Name or a DN.There are quite a few fields but you can leave some blankFor some fields there will be a default value,If you enter '.', the field will be left blank.-----Country Name (2 letter code) [AU]:cnState or Province Name (full name) [Some-State]:zjLocality Name (eg, city) []:hzOrganization Name (eg, company) [Internet Widgits Pty Ltd]:voiceServiceOrganizational Unit Name (eg, section) []:voiceServiceCommon Name (eg, YOUR name) []:voiceServiceEmail Address []:
很多都是你填写的内容,记住中国的国别缩写是cn,我查了半天,我够苯啊,省份和城市缩写随便写,下面的也是随便写。
弄好以后产生2个文件
VoiceService.key和VoiceService.crt
VoiceService.crt这个文件复制一份修改后缀为VoiceService.pem,其实不修改也没事。
然后拷贝到服务器程序所在目录,在indy中加载的程序段,我这里在Form的Create事件中修改
var& appDir:begin& Users:=TUsers.C& appDir:= extractFilePath(application.exename);&& IdServerIOHandlerSSLOpenSSL1.SSLOptions.KeyFile:= appDir + 'VoiceService.key';& IdServerIOHandlerSSLOpenSSL1.SSLOptions.CertFile:= appDir + 'VoiceService.crt';& IdServerIOHandlerSSLOpenSSL1.SSLOptions.RootCertFile:= appDir + 'VoiceService.pem';这些文件路径还不能用相对路径,只能用绝对路径,够操蛋吧。
在IdServerIOHandlerSSLOpenSSL的OnGetPassword事件中填写密码
& Password:=123456;
然后就可以工作了。
对开源的感觉,在开源社区中最容易找到当老大的感觉,因为没有官方文档,没有范例,有的只是对源代码的熟悉程度。
从工业化的角度来说,完备的文档和成熟的范例才是技术进步的基石,而不是源代码。
开源社区有英雄,但是没有工程师,那里有思想,却没有规范。
商业软件看样子不可能消失,同样,开源社区也不能没有。
/qiubole/archive//368229.html
Views(...) Comments()Secure Connections With SSL In Delphi XE5 Firemonkey On IOS, Windows, OSX, And Android | Delphi XE5 XE6 XE7 XE8 10 Seattle Berlin Firemonkey, Delphi Android, Delphi IOS
Secure Connections With SSL In Delphi XE5 Firemonkey On IOS, Windows, OSX, And Android
on January 21, 2014
There are a lot of web based APIs like Facebook where you will need to use SSL to connect and access them. Olaf Monien has a blog post that covers each Delphi Firemonkey platform and how to get SSL working on each of them. Each platform in Delphi Firemonkey has a slightly different way of accessing the OpenSSL libraries which Indy 10 (the TCP/UDP library in XE5) uses. For IOS you will need to download and place in your build directory the static libraries libcrypto.a and libssl.a. For Windows you will need to include libeay32.dll and ssleay32.dll with your application that you distribute. On Windows the section option is for the user to install OpenSSL separately. An install wizard for OpenSSL on Windows can be downloaded from . Olaf provides links to the
which you’ll need for IOS. He has some sample code which goes in your project file that handles the includes cross platform:
Delphi/Pascal
&div&&code&{$IF Defined(IOS) and Defined(CPUARM)}
&div&&code&{$IF Defined(IOS) and Defined(CPUARM)}
Delphi/Pascal
Delphi/Pascal
IdSSLOpenSSLHeaders_Static,
IdSSLOpenSSLHeaders_Static,
Delphi/Pascal
Delphi/Pascal
Delphi/Pascal
IdSSLOpenSSLHeaders,
IdSSLOpenSSLHeaders,
Delphi/Pascal
Delphi/Pascal
Delphi/Pascal
FMX.Forms,
FMX.Forms,
Delphi/Pascal
Delphi/Pascal
Unit5 in 'Unit5.pas' {Form5};
Unit5 in 'Unit5.pas' {Form5};
Delphi/Pascal
{$R *.res}
{$R *.res}
Delphi/Pascal
Delphi/Pascal
{$IF Defined(IOS) and not Defined(CPUARM)}
{$IF Defined(IOS) and not Defined(CPUARM)}
Delphi/Pascal
Delphi/Pascal
IdOpenSSLSetLibPath('/usr/lib/');
IdOpenSSLSetLibPath('/usr/lib/');
Delphi/Pascal
Update: I think for Android SSL just works. No special configuration required.
is licensed under a .
Related Posts
Categories
Recent Posts
Read previous post:If you are looking for help with your Delphi Firemonkey application you might try posting your project on oDesk. oDesk...>> 这是可以用来开发类库的SMTP协议支持登录亲…
这是可以用来开发类库的SMTP协议支持登录亲…
所属分类:
下载地址:
indy-10.2.0.1.zip文件大小:1.55 MB
分享有礼! 》
请点击右侧的分享按钮,把本代码分享到各社交媒体。
通过您的分享链接访问Codeforge,每来2个新的IP,您将获得0.1 积分的奖励。
通过您的分享链接,每成功注册一个用户,该用户在Codeforge上所获得的每1个积分,您都将获得0.2 积分的分成奖励。
bcb开发可以用到的smtp协议类库,支持login协议。-BCB can be used to develop class library smtp agreement to support the login protocol.
Sponsored links
源码文件列表
温馨提示: 点击源码文件名可预览文件内容哦 ^_^
COPYING1.39 kB03-06-06 08:22
COPYING.modifiedBSD1.68 kB03-06-06 08:15
COPYING.MPL25.61 kB03-06-06 08:20
adler32.obj1.01 kB08-26-05 14:31
compress.obj557.00 B08-26-05 14:31
crc32.obj11.31 kB08-26-05 14:31
changelog554.00 B08-10-06 17:13
compat2.00 B08-10-06 17:13
conffiles.ex212.00 B08-10-06 17:13
control1.41 kB08-10-06 17:13
copyright27.27 kB08-10-06 17:13
docs7.00 B08-10-06 17:13
files91.00 B08-10-06 17:13
indy-fpc-default.ex238.00 B08-10-06 17:13
indy-fpc.doc-base.EX530.00 B08-10-06 17:13
postinst.ex927.00 B08-10-06 17:13
postrm.ex919.00 B08-10-06 17:13
preinst.ex696.00 B08-10-06 17:13
prerm.ex887.00 B08-10-06 17:13
755.00 B08-10-06 17:13
rules3.70 kB08-10-06 17:13
watch.ex679.00 B08-10-06 17:13
deflate.obj9.44 kB08-26-05 14:31
4.53 kB04-14-06 18:15
2.75 kB04-14-06 18:15
6.48 kB04-14-06 18:16
5.98 kB04-14-06 18:17
7.23 kB04-14-06 18:17
2.47 kB04-14-06 18:18
4.17 kB04-13-06 21:43
1.04 kB12-23-05 08:09
Eliza.jpg2.94 kB01-03-06 19:56
1.67 kB12-23-05 08:09
logo.jpg1.96 kB01-03-06 19:55
98.17 kB01-18-07 13:38
641.00 B04-14-06 16:00
7.79 kB05-25-06 08:29
2.21 kB05-20-06 12:56
4.11 kB05-20-06 12:56
90.83 kB01-18-07 13:37
542.00 B05-20-06 12:56
825.00 B05-20-06 12:56
85.53 kB01-18-07 13:37
477.00 B04-14-06 18:20
1.30 kB04-03-06 13:41
3.91 kB02-25-06 00:12
11.10 kB02-24-06 20:37
115.99 kB02-24-06 18:32
4.88 kB02-24-06 20:45
3.77 kB03-26-06 12:20
4.37 kB02-25-06 02:58
8.19 kB11-26-06 04:51
7.49 kB11-27-06 01:53
3.86 kB02-24-06 20:56
4.43 kB11-26-06 04:52
11.18 kB02-25-06 02:08
25.72 kB02-24-06 18:35
1.97 kB02-24-06 20:58
2.24 kB02-24-06 21:03
122.88 kB02-24-06 21:10
7.53 kB11-11-06 09:23
16.62 kB11-27-06 02:53
4.35 kB02-25-06 02:53
1.99 kB02-24-06 21:11
13.88 kB11-27-06 15:59
17.82 kB02-24-06 21:13
25.22 kB02-25-06 02:52
3.18 kB02-24-06 21:23
8.84 kB05-20-06 11:36
1.86 kB02-24-06 21:32
1.65 kB02-24-06 21:32
20.43 kB02-24-06 18:39
IdCompilerDefines.inc6.86 kB05-29-06 08:01
5.63 kB08-21-06 02:34
9.38 kB01-03-07 01:33
10.04 kB04-10-06 13:13
3.77 kB02-24-06 21:34
6.28 kB02-24-06 21:34
4.96 kB11-27-06 02:43
23.21 kB02-24-06 21:41
7.71 kB02-24-06 21:49
1.18 kB11-12-06 14:13
56.15 kB08-21-06 02:47
28.94 kB01-16-07 15:26
8.07 kB11-27-06 02:49
42.74 kB02-24-06 21:50
1.96 kB02-24-06 21:50
1.85 kB03-07-06 17:03
1.19 kB02-25-06 03:10
1.74 kB02-24-06 21:51
10.52 kB11-11-06 08:54
6.77 kB02-24-06 21:53
8.18 kB02-24-06 21:54
2.02 kB03-26-06 12:26
972.00 B02-24-06 21:55
70.98 kB02-25-06 03:05
51.87 kB02-25-06 03:06
152.45 kB11-12-06 04:38
2.87 kB03-26-06 12:27
2.10 kB03-26-06 12:28
1.56 kB02-24-06 22:02
1.46 kB02-24-06 22:03
26.57 kB02-24-06 22:05
4.90 kB02-24-06 20:00
6.15 kB11-27-06 02:35
11.96 kB02-24-06 22:05
4.15 kB02-24-06 22:06
3.35 kB02-24-06 22:06
36.62 kB08-21-06 02:51
123.84 kB01-03-07 11:45
6.32 kB02-24-06 22:08
67.24 kB02-24-06 22:09
21.90 kB11-27-06 02:27
54.28 kB02-25-06 03:13
8.02 kB02-24-06 22:11
22.98 kB11-27-06 02:29
3.98 kB02-24-06 22:12
5.29 kB02-24-06 22:12
5.57 kB02-24-06 22:13
2.41 kB02-24-06 22:13
5.57 kB02-24-06 22:13
3.86 kB11-27-06 02:52
3.08 kB02-24-06 22:14
5.48 kB02-24-06 22:14
4.75 kB11-27-06 02:57
9.97 kB02-24-06 22:15
4.63 kB11-27-06 02:56
24.87 kB02-24-06 22:17
5.01 kB02-24-06 22:17
3.50 kB02-24-06 22:17
8.41 kB02-24-06 22:18
10.43 kB11-27-06 02:29
5.66 kB02-24-06 22:19
4.67 kB11-27-06 02:30
4.28 kB02-24-06 22:20
15.02 kB02-24-06 22:21
22.65 kB11-27-06 02:31
7.60 kB02-24-06 22:22
7.78 kB02-24-06 22:23
9.91 kB02-24-06 22:24
4.64 kB02-24-06 22:24
6.10 kB02-24-06 22:25
25.13 kB02-24-06 22:26
15.63 kB02-24-06 22:27
14.16 kB02-24-06 22:27
18.44 kB02-24-06 22:28
3.46 kB02-24-06 22:28
5.45 kB02-24-06 22:29
10.57 kB02-24-06 22:30
3.53 kB02-24-06 22:31
4.21 kB11-27-06 01:55
19.09 kB03-26-06 12:48
236.89 kB12-13-06 19:45
2.15 kB02-24-06 22:35
106.06 kB12-29-06 16:59
783.00 B11-27-06 02:41
99.50 kB01-02-07 23:59
24.14 kB12-13-06 19:53
5.70 kB02-24-06 22:41
5.59 kB12-13-06 19:54
9.13 kB11-26-06 04:47
2.76 kB11-26-06 04:48
7.00 kB01-02-07 17:14
1.22 kB11-26-06 04:48
16.92 kB11-26-06 04:48
12.45 kB11-26-06 04:49
9.31 kB11-27-06 15:59
46.57 kB02-24-06 22:50
3.39 kB11-11-06 09:02
885.00 B11-11-06 09:03
67.39 kB11-27-06 01:56
23.74 kB03-26-06 13:07
11.73 kB02-24-06 22:55
1.13 kB02-24-06 22:55
28.02 kB01-16-07 15:25
5.48 kB02-24-06 22:56
4.82 kB12-13-06 19:56
277.00 kB11-11-06 08:57
98.60 kB08-25-06 13:01
5.62 kB02-24-06 19:13
3.60 kB03-26-06 12:10
1.66 kB02-24-06 19:14
51.41 kB12-13-06 19:36
12.68 kB11-27-06 12:47
15.00 kB11-27-06 02:47
9.03 kB03-26-06 12:17
15.28 kB03-04-06 00:12
8.92 kB04-03-06 14:49
3.75 kB02-24-06 19:20
8.20 kB01-02-07 22:36
5.24 kB02-24-06 19:21
9.06 kB04-03-06 14:50
58.61 kB11-11-06 08:58
24.72 kB02-24-06 23:03
4.14 kB11-27-06 01:54
1.54 kB04-03-06 13:39
1.97 kB11-27-06 01:53
3.90 kB04-03-06 13:40
2.84 kB04-03-06 13:40
16.12 kB03-26-06 13:10
4.72 kB03-26-06 13:11
16.73 kB03-26-06 13:12
5.97 kB02-24-06 23:05
13.05 kB04-03-06 14:55
2.58 kB04-03-06 14:55
7.03 kB02-24-06 23:06
44.23 kB11-11-06 08:50
53.91 kB03-26-06 18:58
9.73 kB03-26-06 13:17
25.55 kB04-03-06 14:57
2.25 kB02-24-06 23:12
6.13 kB04-03-06 14:57
1.38 kB02-24-06 23:12
11.91 kB11-26-06 04:50
2.46 kB02-24-06 23:13
12.83 kB04-03-06 14:59
5.31 kB04-03-06 15:00
16.89 kB03-26-06 13:17
18.00 kB02-24-06 23:14
46.50 kB11-11-06 09:07
67.63 kB02-24-06 23:16
10.24 kB11-26-06 04:51
6.77 kB02-26-06 06:09
416.00 B06-13-05 14:50
497.00 B09-22-05 09:35
18.17 kB02-24-06 23:16
31.40 kB11-11-06 08:55
16.61 kB11-11-06 08:58
23.49 kB12-13-06 11:45
1.79 kB02-24-06 23:20
2.16 kB02-24-06 23:20
1.17 kB02-24-06 23:20
2.09 kB02-24-06 23:21
7.75 kB02-24-06 19:24
718.00 B02-24-06 19:24
19.15 kB02-24-06 19:26
62.84 kB02-24-06 19:26
5.60 kB11-27-06 15:42
4.73 kB11-27-06 15:43
11.33 kB03-07-06 17:00
6.31 kB03-07-06 17:06
19.34 kB03-26-06 13:20
11.62 kB04-03-06 15:02
9.28 kB11-11-06 09:27
20.26 kB05-20-06 11:41
4.70 kB03-07-06 17:05
11.81 kB03-14-06 19:26
46.23 kB01-16-07 14:54
2.09 kB02-24-06 23:24
2.53 kB02-24-06 23:24
1.88 kB02-24-06 23:25
2.99 kB02-24-06 23:26
5.01 kB11-11-06 08:45
1.53 kB02-24-06 23:28
10.76 kB02-24-06 23:28
1.44 kB02-24-06 23:28
1.73 kB02-24-06 23:29
2.18 kB04-03-06 15:07
1.75 kB02-24-06 23:29
2.52 kB04-03-06 15:08
2.44 kB02-24-06 23:30
2.81 kB11-11-06 08:44
3.49 kB02-24-06 19:36
6.64 kB02-24-06 19:36
2.16 kB02-24-06 19:36
4.82 kB02-24-06 19:37
4.59 kB04-03-06 15:08
1.30 kB04-03-06 15:09
2.15 kB04-03-06 16:36
2.32 kB02-24-06 19:38
3.35 kB02-24-06 19:38
1.97 kB02-24-06 19:38
8.20 kB11-27-06 12:37
14.18 kB08-21-06 03:39
12.79 kB11-11-06 09:07
20.84 kB02-24-06 23:37
41.59 kB01-17-07 13:07
30.09 kB11-27-06 15:44
4.58 kB11-12-06 17:11
12.06 kB02-24-06 23:40
16.35 kB03-07-06 17:02
36.67 kB11-27-06 02:51
21.59 kB02-24-06 23:40
6.21 kB11-27-06 02:54
62.75 kB01-16-07 15:12
272.40 kB11-12-06 12:21
26.28 kB12-13-06 11:27
24.05 kB02-26-06 06:11
29.03 kB11-27-06 02:11
34.63 kB02-24-06 20:30
35.62 kB11-27-06 17:17
40.25 kB05-05-06 01:22
645.00 B06-13-05 14:51
2.34 kB05-07-06 09:33
6.78 kB02-24-06 23:52
4.24 kB11-30-05 00:41
6.71 kB02-24-06 19:43
2.48 kB05-04-06 23:42
450.00 B09-29-05 14:56
848.00 B10-15-05 15:35
4.04 kB02-24-06 23:52
27.65 kB04-03-06 16:00
2.59 kB02-24-06 23:53
3.29 kB09-29-05 14:52
1.87 kB02-24-06 23:53
2.56 kB02-24-06 23:53
2.68 kB02-24-06 23:54
3.88 kB02-24-06 23:54
16.62 kB08-21-06 04:51
3.18 kB05-29-06 12:55
2.32 kB11-11-06 09:25
14.27 kB11-27-06 02:49
23.85 kB11-27-06 02:48
897.00 B02-24-06 19:45
4.52 kB02-24-06 19:47
20.24 kB02-24-06 23:55
6.00 kB02-24-06 23:55
3.52 kB11-11-06 08:49
16.38 kB11-11-06 09:32
15.72 kB05-20-06 11:30
15.22 kB02-24-06 19:49
6.04 kB02-24-06 23:56
3.07 kB02-24-06 23:57
4.11 kB02-24-06 23:57
2.14 kB02-24-06 23:57
2.36 kB11-11-06 09:23
9.68 kB03-26-06 13:31
4.04 kB02-24-06 23:58
14.92 kB03-26-06 13:32
10.09 kB02-24-06 19:50
13.21 kB02-24-06 19:51
9.68 kB01-02-07 22:39
1.87 kB02-25-06 00:01
1.93 kB02-25-06 00:01
1.89 kB02-25-06 00:01
1.94 kB02-25-06 00:02
11.92 kB02-25-06 00:02
15.28 kB02-25-06 00:03
1.38 kB02-25-06 00:10
47.28 kB04-03-06 15:14
IdVers.inc93.00 B08-06-05 01:45
1.86 kB02-25-06 00:11
2.88 kB02-25-06 00:11
218.08 kB01-16-07 16:09
7.22 kB01-16-07 14:22
791.00 B02-24-06 19:56
30.62 kB01-03-07 01:20
9.51 kB02-25-06 00:12
866.00 B04-11-06 19:31
32.38 kB11-12-06 21:57
1.10 kB09-16-06 00:16
4.04 kB11-12-06 13:24
355.00 B09-16-06 00:03
infback.obj7.28 kB08-26-05 14:31
inffast.obj2.23 kB08-26-05 14:31
inflate.obj11.19 kB08-26-05 14:31
inftrees.obj2.41 kB08-26-05 14:31
233.98 kB01-18-07 16:28
9.15 kB11-12-06 13:24
Package.fpc204.00 B01-18-07 16:28
trees.obj11.57 kB08-26-05 14:31
uncompr.obj494.00 B08-26-05 14:31
zutil.obj1.50 kB08-26-05 14:31
indy-fpc.spec.template6.13 kB06-05-06 06:48
740.00 B10-14-05 12:26
IdAboutVCL.lrs307.71 kB09-22-05 02:09
7.94 kB12-04-05 10:16
2.55 kB02-24-06 18:32
IdCompilerDefines.inc6.86 kB05-29-06 08:01
4.14 kB02-24-06 18:40
IdDsgnCompilerDefines.inc2.28 kB12-03-05 11:55
1.81 kB02-24-06 18:47
4.13 kB02-24-06 18:47
3.51 kB02-24-06 19:05
20.63 kB02-24-06 19:09
2.01 kB02-24-06 21:59
1.49 kB02-24-06 22:00
3.52 kB02-24-06 22:00
2.16 kB02-24-06 22:00
IdDsnSASLListEditorFormVCL.lrs9.83 kB09-22-05 14:52
14.52 kB02-24-06 22:01
IdRegister.lrs229.28 kB05-02-06 12:48
20.50 kB05-02-06 17:48
IdRegisterCore.lrs50.34 kB09-22-05 01:50
6.50 kB02-24-06 19:27
indylaz.lpk5.38 kB03-23-06 10:21
718.00 B01-18-07 13:18
69.85 kB01-18-07 16:28
1.08 kB01-18-07 12:41
Package.fpc85.00 B01-18-07 16:28
1.39 kB06-05-06 06:47
8.03 kB01-17-07 12:46
(提交有效评论获得积分)
评论内容不能少于15个字,不要超出160个字。
评价成功,多谢!
下载indy-10.2.0.1.zip
CodeForge积分(原CF币)全新升级,功能更强大,使用更便捷,不仅可以用来下载海量源代码马上还可兑换精美小礼品了
您的积分不足,优惠套餐快速获取 30 积分
10积分 / ¥100
30积分 / ¥200原价 ¥300 元
100积分 / ¥500原价 ¥1000 元
订单支付完成后,积分将自动加入到您的账号。以下是优惠期的人民币价格,优惠期过后将恢复美元价格。
支付宝支付宝付款
微信钱包微信付款
更多付款方式:、
您本次下载所消耗的积分将转交上传作者。
同一源码,30天内重复下载,只扣除一次积分。
鲁ICP备号-3 runtime:Elapsed:134.216ms - init:0.1;find:0.7;t:0.4;tags:0.3;related:88.7;comment:0.2; 27.69
登录 CodeForge
还没有CodeForge账号?
Switch to the English version?
^_^"呃 ...
Sorry!这位大神很神秘,未开通博客呢,请浏览一下其他的吧

我要回帖

更多关于 win10 64位安装版iso 的文章

 

随机推荐