tengo el siguiente fragmento de código para obtener el nombre de host y la dirección IP,Fallo de segmentación cuando al buscar el nombre de host y la dirección IP
#include <stdlib.h>
#include <stdio.h>
#include <netdb.h> /* This is the header file needed for gethostbyname() */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
int main(int argc, char *argv[])
{
struct hostent *he;
if (argc!=2){
printf("Usage: %s <hostname>\n",argv[0]);
exit(-1);
}
if ((he=gethostbyname(argv[1]))==NULL){
printf("gethostbyname() error\n");
exit(-1);
}
printf("Hostname : %s\n",he->h_name); /* prints the hostname */
printf("IP Address: %s\n",inet_ntoa(*((struct in_addr *)he->h_addr))); /* prints IP address */
}
Pero estoy recibiendo una advertencia durante la compilación:
$cc host.c -o host
host.c: In function ‘main’:
host.c:24: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘int’
entonces hay un fallo de segmentación cuando corro el código:
./host 192.168.1.4
Hostname : 192.168.1.4
Segmentation fault
¿Cuál es el error en el código?
Estás haciendo algo horrible para una estructura inocente. – SLaks
Por cierto, generalmente no debe usar 'gethostbyname' en el nuevo código, principalmente porque no es compatible con IPv6. Deberías usar 'getaddrinfo' en su lugar: http://beej.us/guide/bgnet/output/html/multipage/getaddrinfoman.html –
¿Qué sucede si ejecutas ./host www.stackoverflow.com? Es decir, si lo usa con un nombre real en lugar de una dirección IP. – nsayer