M myangel Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-09 #5 function IPToName(ip: string): string; var p : PHostEnt; InetAddr : dword; begin InetAddr := inet_addr(PChar(IP)); try p := GetHostByAddr(@InetAddr, Length(IP), PF_Inet); result := p^.h_name; except result := ''; end; end;
function IPToName(ip: string): string; var p : PHostEnt; InetAddr : dword; begin InetAddr := inet_addr(PChar(IP)); try p := GetHostByAddr(@InetAddr, Length(IP), PF_Inet); result := p^.h_name; except result := ''; end; end;