hints 1599 dmtcp_coordinator.cpp struct addrinfo hints; hints 1602 dmtcp_coordinator.cpp memset(&hints, 0, sizeof(struct addrinfo)); hints 1603 dmtcp_coordinator.cpp hints.ai_family = AF_INET; hints 1604 dmtcp_coordinator.cpp hints.ai_socktype = SOCK_STREAM; hints 1605 dmtcp_coordinator.cpp hints.ai_flags = AI_PASSIVE; hints 1606 dmtcp_coordinator.cpp hints.ai_protocol = 0; hints 1607 dmtcp_coordinator.cpp hints.ai_canonname = NULL; hints 1608 dmtcp_coordinator.cpp hints.ai_addr = NULL; hints 1609 dmtcp_coordinator.cpp hints.ai_next = NULL; hints 1612 dmtcp_coordinator.cpp error = getaddrinfo(hostname, NULL, &hints, &result); hints 289 plugin/ipc/socket/socketwrappers.cpp const struct addrinfo *hints, hints 295 plugin/ipc/socket/socketwrappers.cpp int ret = _real_getaddrinfo(node, service, hints, res); hints 385 plugin/ipc/ssh/ssh.cpp struct addrinfo hints; hints 388 plugin/ipc/ssh/ssh.cpp memset(&hints, 0, sizeof(struct addrinfo)); hints 389 plugin/ipc/ssh/ssh.cpp hints.ai_family = AF_INET; hints 390 plugin/ipc/ssh/ssh.cpp hints.ai_socktype = SOCK_STREAM; hints 391 plugin/ipc/ssh/ssh.cpp hints.ai_flags = AI_PASSIVE; hints 392 plugin/ipc/ssh/ssh.cpp hints.ai_protocol = 0; hints 393 plugin/ipc/ssh/ssh.cpp hints.ai_canonname = NULL; hints 394 plugin/ipc/ssh/ssh.cpp hints.ai_addr = NULL; hints 395 plugin/ipc/ssh/ssh.cpp hints.ai_next = NULL; hints 398 plugin/ipc/ssh/ssh.cpp error = getaddrinfo(hostname, NULL, &hints, &result);