- 论坛徽章:
- 0
|
Codes below:
static struct sockaddr_in *
get_server(char *argv)
{
parse_url(argv);
#if DEBUG
assert(host==NULL);
#endif
struct sockaddr_in *server;
struct hostent *h;
char *ip=(char *)malloc(IP_LENGTH);
server->sin_family=AF_INET;
server->sin_port=htons(HTTP_PORT);
if((h=gethostbyname(host))==NULL)
{
herror("get host failed");
return NULL;
}
if(h->h_addrtype==AF_INET)
{
ip=inet_ntoa(h->h_addr_list[0]);
#if DEBUG
fprintf("ip is %s\n",ip);
#endif
}
inet_aton(ip,(struct in_addr *)&server->sin_addr);
return server;
}
编译的时候老是提示inet_ntoa(h->h_addr_list[0]) : incompatible type for argument 1 of ‘inet_ntoa’
这是为什么?? |
|