Delphi Ping
Posted cipherlab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi Ping相关的知识,希望对你有一定的参考价值。
function PingServer(HostIP: string;LinkTimeOut: integer): boolean; var RRemoteC: TIdIcmpClient; AReplyStatus: TReplyStatus; begin try result := true; RRemoteC := TIdIcmpClient.Create(nil); RRemoteC.Host := HostIP; RRemoteC.ReceiveTimeout := LinkTimeOut; try RRemoteC.Ping; AReplyStatus := RRemoteC.ReplyStatus; if (AReplyStatus.ReplyStatusType = rsTimeOut) then begin result := false; end; except result := false; end; finally RRemoteC.Free; end; end;
以上是关于Delphi Ping的主要内容,如果未能解决你的问题,请参考以下文章
谁能帮忙举个例子,用DELPHI写个简单例子,调用PING命令并且取回PING结果显示MSG BOX里,要通过管道技术取
Delphi的Indy ICMP封装在DLL之后 PING一个不存在的主机时程序会崩溃
终于懂了:Delphi重定义消息结构随心所欲,只需要前4个字节是消息编号就行了,跟Windows消息虽然尽量保持一致,但其实相互没有特别大的关系。有了这个,就有了主动,带不带句柄完全看需要。(代码片段