码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi Ping检测联网状态

时间:2014-11-01 20:25:07      阅读:619      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   sp   on   cti   bs   as   res   

Delphi Ping检测联网状态

uses IdBaseComponent, IdComponent, IdRawBase,  IdRawClient, IdIcmpClient;

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;

调用:

if PingServer(‘www.baidu.com‘, 5000) then xxx

Delphi Ping检测联网状态

标签:io   os   ar   sp   on   cti   bs   as   res   

原文地址:http://www.cnblogs.com/huavsheng/p/4067648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!