Home
last modified time | relevance | path

Searched refs:hints (Results 1 – 25 of 63) sorted by relevance

123

/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/
H A D11_usagi_fix.patch19 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 D10_usagi-ipv6.patch119 + 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 Dutils.cpp50 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 Dnet.cpp71 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 Dl2tpv3.c528 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 Dipmi_intf.c338 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 Dsnmp_util.cpp48 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 Dserver-conf.cpp258 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 Dpython3-typer_0.15.4.bb1 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 Dpython3-pydantic_2.11.3.bb3 type hints.\
/openbmc/qemu/tests/unit/
H A Dcrypto-tls-x509-helpers.c170 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 Dsys.cpp119 const struct addrinfo* hints, in getaddrinfo() argument
122 return ::getaddrinfo(node, service, hints, res); in getaddrinfo()
H A Dsys.hpp54 const struct addrinfo* hints,
89 const struct addrinfo* hints,
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/
H A Dfrom-debian-to-fix-compile-errors.patch99 + 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 DREADME.md20 relying solely on compile/link tests and pre-defined hints.
/openbmc/webui-vue/
H A Dvue.config.js131 hints: 'warning', property in config.performance
/openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/
H A Dnoopus.patch7 silently. The silent issue is discussed in the link below and hints a patch
/openbmc/qemu/target/arm/tcg/
H A Da32-uncond.decode68 # Unallocated memory hints
/openbmc/u-boot/api/
H A DREADME24 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 Dcross-answers-aarch64.txt45 Checking whether fcntl supports setting/getting hints: NO
H A Dcross-answers-mips64el.txt45 Checking whether fcntl supports setting/getting hints: NO
H A Dcross-answers-powerpc.txt46 Checking whether fcntl supports setting/getting hints: NO
H A Dcross-answers-aarch64_be.txt45 Checking whether fcntl supports setting/getting hints: NO
H A Dcross-answers-mips.txt46 Checking whether fcntl supports setting/getting hints: NO
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/wxwidgets/wxwidgets/
H A D0005-wx-config-fix-libdir-for-multilib.patch52 # Options that permit the user to supply hints that may affect the output.

123