| /openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
| H A D | 11_usagi_fix.patch | 19 memset(&hints, 0, sizeof(hints)); 20 hints.ai_family = AF_INET6; 21 hints.ai_socktype = SOCK_STREAM; 40 hints.ai_family = sin->sa_family; 41 hints.ai_socktype = SOCK_STREAM; 42 hints.ai_flags = AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST; 43 - if ((err = getaddrinfo(host->name, NULL, &hints, &res0) == 0)) { 44 + if ((err = getaddrinfo(host->name, NULL, &hints, &res0)) == 0) {
|
| H A D | 10_usagi-ipv6.patch | 119 + struct addrinfo hints, *res; 128 + memset(&hints, 0, sizeof(hints)); 129 + hints.ai_family = AF_INET6; 130 + hints.ai_socktype = SOCK_STREAM; 131 + hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST; 132 + if ((ret = getaddrinfo(tok + 1, NULL, &hints, &res)) == 0) { 137 + if (ret != 0 || getaddrinfo(string, NULL, &hints, &res) != 0) 205 + struct addrinfo hints, *res; 211 + memset(&hints, 0, sizeof(hints)); 212 + hints.ai_family = AF_INET6; [all …]
|
| /openbmc/phosphor-user-manager/phosphor-ldap-config/ |
| H A D | utils.cpp | 50 addrinfo hints{}; in isValidLDAPURI() local 52 hints.ai_family = AF_UNSPEC; in isValidLDAPURI() 53 hints.ai_socktype = SOCK_STREAM; in isValidLDAPURI() 54 hints.ai_flags |= AI_CANONNAME; in isValidLDAPURI() 56 auto result = getaddrinfo(ludppPtr->lud_host, nullptr, &hints, &servinfo); in isValidLDAPURI()
|
| /openbmc/phosphor-ipmi-flash/tools/ |
| H A D | net.cpp | 71 struct addrinfo hints; in sendContents() local 72 std::memset(&hints, 0, sizeof(hints)); in sendContents() 73 hints.ai_flags = AI_NUMERICHOST; in sendContents() 74 hints.ai_family = AF_UNSPEC; in sendContents() 75 hints.ai_socktype = SOCK_STREAM; in sendContents() 78 int ret = sys->getaddrinfo(host.c_str(), port.c_str(), &hints, &addrs); in sendContents()
|
| /openbmc/qemu/net/ |
| H A D | l2tpv3.c | 528 struct addrinfo hints; in net_init_l2tpv3() local 614 memset(&hints, 0, sizeof(hints)); in net_init_l2tpv3() 617 hints.ai_family = AF_INET6; in net_init_l2tpv3() 619 hints.ai_family = AF_INET; in net_init_l2tpv3() 622 hints.ai_socktype = SOCK_DGRAM; in net_init_l2tpv3() 623 hints.ai_protocol = 0; in net_init_l2tpv3() 629 hints.ai_socktype = SOCK_RAW; in net_init_l2tpv3() 630 hints.ai_protocol = IPPROTO_L2TP; in net_init_l2tpv3() 633 gairet = getaddrinfo(l2tpv3->src, srcport, &hints, &result); in net_init_l2tpv3() 654 memset(&hints, 0, sizeof(hints)); in net_init_l2tpv3() [all …]
|
| /openbmc/ipmitool/src/plugins/ |
| H A D | ipmi_intf.c | 338 struct addrinfo hints; in ipmi_intf_socket_connect() local 358 memset(&hints, 0, sizeof(hints)); in ipmi_intf_socket_connect() 359 hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */ in ipmi_intf_socket_connect() 360 hints.ai_socktype = SOCK_DGRAM; /* Datagram socket */ in ipmi_intf_socket_connect() 361 hints.ai_flags = 0; /* use AI_NUMERICSERV for no name resolution */ in ipmi_intf_socket_connect() 362 hints.ai_protocol = IPPROTO_UDP; /* */ in ipmi_intf_socket_connect() 364 if (getaddrinfo(params->hostname, service, &hints, &rp0) != 0) { in ipmi_intf_socket_connect() 389 hints.ai_family = rp->ai_family; in ipmi_intf_socket_connect() 406 hints.ai_family = rp->ai_family; in ipmi_intf_socket_connect() 462 hints.ai_family = rp->ai_family; in ipmi_intf_socket_connect() [all …]
|
| /openbmc/phosphor-snmp/ |
| H A D | snmp_util.cpp | 48 addrinfo hints{}; in resolveAddress() local 51 hints.ai_family = AF_UNSPEC; in resolveAddress() 52 hints.ai_socktype = SOCK_STREAM; in resolveAddress() 53 hints.ai_flags |= AI_CANONNAME; in resolveAddress() 55 auto result = getaddrinfo(address.c_str(), nullptr, &hints, &addr); in resolveAddress()
|
| /openbmc/phosphor-logging/phosphor-rsyslog-config/ |
| H A D | server-conf.cpp | 258 addrinfo hints{}; in addressValid() local 260 hints.ai_family = AF_UNSPEC; in addressValid() 261 hints.ai_socktype = SOCK_STREAM; in addressValid() 262 hints.ai_flags |= AI_CANONNAME; in addressValid() 264 auto result = getaddrinfo(address.c_str(), nullptr, &hints, &res); in addressValid()
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-typer_0.15.4.bb | 1 SUMMARY = "Typer, build great CLIs. Easy to code. Based on Python type hints." 3 …cations that users will love using and developers will love creating. Based on Python type hints. \
|
| H A D | python3-pydantic_2.11.3.bb | 3 type hints.\
|
| /openbmc/qemu/tests/unit/ |
| H A D | crypto-tls-x509-helpers.c | 170 struct addrinfo hints; in test_tls_get_ipaddr() local 172 memset(&hints, 0, sizeof(hints)); in test_tls_get_ipaddr() 173 hints.ai_flags = AI_NUMERICHOST; in test_tls_get_ipaddr() 174 g_assert(getaddrinfo(addrstr, NULL, &hints, &res) == 0); in test_tls_get_ipaddr()
|
| /openbmc/phosphor-ipmi-flash/internal/ |
| H A D | sys.cpp | 119 const struct addrinfo* hints, in getaddrinfo() argument 122 return ::getaddrinfo(node, service, hints, res); in getaddrinfo()
|
| H A D | sys.hpp | 54 const struct addrinfo* hints, 89 const struct addrinfo* hints,
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/ |
| H A D | from-debian-to-fix-compile-errors.patch | 99 + struct addrinfo *res, hints; 100 + memset(&hints, '\0', sizeof(hints)); 101 + if(getaddrinfo(COMSAThost,BIFF_serviceport,&hints,&res)) 204 +{ char*chad;int newvalid; struct addrinfo *res, hints; 253 + bzero(&hints,sizeof(hints)); 254 + hints.ai_socktype=SOCK_DGRAM; 255 + hints.ai_flags=AI_ADDRCONFIG; 256 + if(getaddrinfo(chad,chp,&hints,&res))
|
| /openbmc/openbmc/poky/meta/recipes-devtools/perl-cross/files/ |
| H A D | README.md | 20 relying solely on compile/link tests and pre-defined hints.
|
| /openbmc/webui-vue/ |
| H A D | vue.config.js | 131 hints: 'warning', property in config.performance
|
| /openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/ |
| H A D | noopus.patch | 7 silently. The silent issue is discussed in the link below and hints a patch
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | a32-uncond.decode | 68 # Unallocated memory hints
|
| /openbmc/u-boot/api/ |
| H A D | README | 24 for example it doesn't keep states, but relies on hints from the app and
|
| /openbmc/openbmc/meta-openembedded/meta-networking/files/waf-cross-answers/ |
| H A D | cross-answers-aarch64.txt | 45 Checking whether fcntl supports setting/getting hints: NO
|
| H A D | cross-answers-mips64el.txt | 45 Checking whether fcntl supports setting/getting hints: NO
|
| H A D | cross-answers-powerpc.txt | 46 Checking whether fcntl supports setting/getting hints: NO
|
| H A D | cross-answers-aarch64_be.txt | 45 Checking whether fcntl supports setting/getting hints: NO
|
| H A D | cross-answers-mips.txt | 46 Checking whether fcntl supports setting/getting hints: NO
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/wxwidgets/wxwidgets/ |
| H A D | 0005-wx-config-fix-libdir-for-multilib.patch | 52 # Options that permit the user to supply hints that may affect the output.
|