未验证 提交 2289f6ac 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #1131 from SummerGGift/fix_bug_in_nfs_ipv6

[nfs] : fix bug in nfs when enable ipv6
/* @(#)clnt_generic.c 2.2 88/08/01 4.0 RPCSRC */ /* @(#)clnt_generic.c 2.2 88/08/01 4.0 RPCSRC */
/* /*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
* unrestricted use provided that this legend is included on all tape * unrestricted use provided that this legend is included on all tape
...@@ -41,49 +41,47 @@ static char sccsid[] = "@(#)clnt_generic.c 1.4 87/08/11 (C) 1987 SMI"; ...@@ -41,49 +41,47 @@ static char sccsid[] = "@(#)clnt_generic.c 1.4 87/08/11 (C) 1987 SMI";
* returns client handle. Default options are set, which the user can * returns client handle. Default options are set, which the user can
* change using the rpc equivalent of ioctl()'s. * change using the rpc equivalent of ioctl()'s.
*/ */
CLIENT *clnt_create (const char *hostname, const unsigned long prog, CLIENT *clnt_create(const char *hostname, const unsigned long prog,
const unsigned long vers, const char *proto) const unsigned long vers, const char *proto)
{ {
int sock; int sock;
struct hostent *h; struct sockaddr_in server;
struct sockaddr_in sin; struct addrinfo hint, *res = NULL;
struct timeval tv; struct timeval tv;
CLIENT *client; CLIENT *client;
int ret;
h = (struct hostent *)gethostbyname(hostname); memset(&hint, 0, sizeof(hint));
if (h == NULL) { ret = getaddrinfo(hostname, NULL, &hint, &res);
rt_kprintf("unknown host\n"); if (ret != 0)
return (NULL); {
} rt_kprintf("getaddrinfo err: %d '%s'\n", ret, hostname);
if (h->h_addrtype != AF_INET) { return NULL;
rt_kprintf("unknow inet\n"); }
return (NULL);
}
memset((char*)&sin,0,sizeof(sin));
sin.sin_family = h->h_addrtype;
sin.sin_port = 0;
memmove((char *) &sin.sin_addr, h->h_addr, h->h_length);
sock = -1; memcpy(&server, res->ai_addr, sizeof(struct sockaddr_in));
if (strcmp(proto, "udp") == 0) freeaddrinfo(res);
{
tv.tv_sec = 5;
tv.tv_usec = 0;
client = clntudp_create(&sin, prog, vers, tv, &sock);
if (client == NULL) return NULL;
tv.tv_sec = 1;
clnt_control(client, CLSET_TIMEOUT, (char*)&tv);
}
else
{
rt_kprintf("unknow protocol\n");
return NULL;
}
return (client); sock = -1;
if (strcmp(proto, "udp") == 0)
{
tv.tv_sec = 5;
tv.tv_usec = 0;
client = clntudp_create(&server, prog, vers, tv, &sock);
if (client == NULL) return NULL;
tv.tv_sec = 1;
clnt_control(client, CLSET_TIMEOUT, (char *)&tv);
}
else
{
rt_kprintf("unknow protocol\n");
return NULL;
}
return (client);
} }
void clnt_perror(CLIENT *rpch, const char *s) void clnt_perror(CLIENT *rpch, const char *s)
{ {
rt_kprintf("rpc client error:%s\n", s); rt_kprintf("rpc client error:%s\n", s);
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册