23/06/2006, 08:54
|
| | Fecha de Ingreso: julio-2003
Mensajes: 70
Antigüedad: 21 años, 5 meses Puntos: 0 | |
me servira esta codigo
#include <windows.h>
#include <winsock2.h>
#include <stdlib.h>
#include <stdio.h>
void Resuelve(char * Servidor);
int main(int argc, char *argv[])
{
Resuelve("www.viricototal.tk");
return 0;
}
void Resuelve(char * Servidor)
{
WSADATA wsaData;
struct hostent *hServ;
if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0)
ExitProcess(EXIT_FAILURE);
if ((hServ = gethostbyname(Servidor)) == NULL)
ExitProcess(EXIT_FAILURE);
printf("Host name : %s\n", hServ->h_name);
printf("IP Address : %s\n", inet_ntoa(*((struct in_addr *)hServ->h_addr)));
system("pause");
}
__________________ NormaB |