1
1

Merge pull request #5823 from jsquyres/pr/v4.0.x/fix-tcp-btl-show-help-ip-address

v4.0.x: btl/tcp: output the IP address correctly
Этот коммит содержится в:
Geoff Paulsen 2018-10-03 08:29:37 -05:00 коммит произвёл GitHub
родитель 9d1a6db1a0 81f2f19398
Коммит 593d652077
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -901,17 +901,22 @@ void mca_btl_tcp_proc_accept(mca_btl_tcp_proc_t* btl_proc, struct sockaddr* addr
/* No further use of this socket. Close it */
CLOSE_THE_SOCKET(sd);
{
char *addr_str = NULL, *tmp, *pnet;
char *addr_str = NULL, *tmp;
char ip[128];
ip[sizeof(ip) - 1] = '\0';
for (size_t i = 0; i < btl_proc->proc_endpoint_count; i++) {
mca_btl_base_endpoint_t* btl_endpoint = btl_proc->proc_endpoints[i];
if (btl_endpoint->endpoint_addr->addr_family != addr->sa_family) {
continue;
}
pnet = opal_net_get_hostname((struct sockaddr*)&btl_endpoint->endpoint_addr->addr_inet);
inet_ntop(btl_endpoint->endpoint_addr->addr_family,
(void*) &(btl_endpoint->endpoint_addr->addr_inet),
ip, sizeof(ip) - 1);
if (NULL == addr_str) {
(void)asprintf(&tmp, "\n\t%s", pnet);
(void)asprintf(&tmp, "\n\t%s", ip);
} else {
(void)asprintf(&tmp, "%s\n\t%s", addr_str, pnet);
(void)asprintf(&tmp, "%s\n\t%s", addr_str, ip);
free(addr_str);
}
addr_str = tmp;