obtener IP a partir de nombre de dominio

22/03/2005 - 10:42 por mdjimenez | Informe spam
Hola de nuevo grupo,

necesito obtener la dirección IP de una máquina dado el nombre de
dominio. Por ejemplo, una función en C que reciba "posting.google.com"
y me devuelva 0xd8ef257a. Existe algo así de sencillo o hay que
currárselo un poco?

Saludos, y gracias de antemano.
 

Leer las respuestas

#1 Rodrigo Corral [MVP]
22/03/2005 - 11:45 | Informe spam
gethostbyname() es la funcion que debes usar...

De la ayuda de VS

//-
// Declare and initialize variables
hostent* remoteHost;
char* host_name;
unsigned int addr;

//-
// User inputs name of host
printf("Input name of host: ");
host_name = (char*) malloc(sizeof(char*)*16);
fgets(host_name, 16, stdin);

// If the user input is an alpha name for the host, use gethostbyname()
// If not, get host by addr (assume IPv4)
if (isalpha(host_name[0])) { /* host address is a name */
host_name[strlen(host_name)-1] = '\0'; /* NULL TERMINATED */
remoteHost = gethostbyname(host_name);
}
else {
addr = inet_addr(host_name);
remoteHost = gethostbyaddr((char *)&addr, 4, AF_INET);
}

if (WSAGetLastError() != 0) {
if (WSAGetLastError() == 11001)
printf("Host not found...Exiting.");
}
else
printf("error#:%ld", WSAGetLastError());

// The remoteHost structure can now be used to
// access information about the host



Un saludo
Rodrigo Corral González [MVP]

FAQ de microsoft.public.es.vc++
http://rcorral.mvps.org

Preguntas similares