Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.04.11;
Скачать: CL | DM;

Вниз

Как в сети по IP адресу узнать имя машины?   Найти похожие ветки 

 
moor38   (2004-03-12 18:23) [0]

Как в сети по IP адресу узнать имя машины?


 
ki11er   (2004-03-12 18:35) [1]

gethostbyaddr


 
moor38   (2004-03-12 18:39) [2]

нет не моей тачки, а удаленно другой находящейся в сети


 
ki11er   (2004-03-12 18:43) [3]

Ну так и дай на вход адрес той машины, для которой хочешь узнать


 
moor38   (2004-03-12 18:46) [4]

не понял


 
ki11er   (2004-03-12 18:48) [5]

struct HOSTENT FAR * gethostbyaddr(
 const char FAR *addr,
 int len,
 int type
);

addr
[in] Pointer to an address in network byte order.
len
[in] Length of the address.
type
[in] Type of the address, such as the AF_INET address family type (defined as TCP, UDP, and other associated Internet protocols). Address family types and their corresponding values are defined in the Winsock2.h header file.


 
moor38   (2004-03-12 19:47) [6]

что-то на эту структуру ма...ся delphi


 
Rouse_ ©   (2004-03-12 20:24) [7]

http://www.delphimaster.ru/cgi-bin/download.pl?look=1&id=1078646471&n=1


 
Raptor   (2004-03-18 17:06) [8]

В приложении к Indy:

procedure TForm1.IdTCPServer1Connect(AThread: TIdPeerThread);
var IP         : string;
   SockAddrIn : TSockAddrIn;
   Size       : Integer;
   HostEnt    : PHostEnt;

begin
  IP:=AThread.Connection.Socket.Binding.PeerIP;

  Size:=SizeOf(SockAddrIn);
  getpeername(AThread.Connection.Socket.Binding.Handle, SockAddrIn, Size);
  HostEnt:=gethostbyaddr(@SockAddrIn.sin_addr.s_addr, 4, PF_INET);

  ListBox1.Items.Add(IP+" - "+HostEnt.h_name)
end;



Страницы: 1 вся ветка

Текущий архив: 2004.04.11;
Скачать: CL | DM;

Наверх




Память: 0.48 MB
Время: 0.055 c
1-1082717242
афвуд
2004-04-23 14:47
2004.04.11
Как установить дробный разделитель для чисел в своей проге?


9-1070977826
race1
2003-12-09 16:50
2004.04.11
game develop


4-1075408183
NavigatorV
2004-01-29 23:29
2004.04.11
Tray


4-1078654631
GrayFace
2004-03-07 13:17
2004.04.11
Как получать и изменять тексты кнопок OK , Cancel и т.д.


1-1082621797
[BAD]Angel
2004-04-22 12:16
2004.04.11
onTop