/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ruli/files/ |
H A D | 0001-Fix-build-with-format-string-checks.patch | 29 --- a/sample/getaddrinfo.c 30 +++ b/sample/getaddrinfo.c 40 --- a/sample/ruli-getaddrinfo.c 41 +++ b/sample/ruli-getaddrinfo.c
|
H A D | 0001-Make-space-for-flags-from-environment.patch | 41 - cd $(INSTALL_MAN_DIR)/man1 && ln -s srvsearch.1 ruli-getaddrinfo.1 42 - cd $(INSTALL_MAN_DIR)/man1 && ln -s srvsearch.1 getaddrinfo.1 48 + cd $(INSTALL_MAN_DIR)/man1 && ln -sf srvsearch.1 ruli-getaddrinfo.1 49 + cd $(INSTALL_MAN_DIR)/man1 && ln -sf srvsearch.1 getaddrinfo.1
|
/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
H A D | 11_usagi_fix.patch | 11 + * Behavior of getaddrinfo() against IPv4-mapped IPv6 address is 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 | 132 + if ((ret = getaddrinfo(tok + 1, NULL, &hints, &res)) == 0) { 137 + if (ret != 0 || getaddrinfo(string, NULL, &hints, &res) != 0) 215 + if (getaddrinfo(string, NULL, &hints, &res) != 0) 233 + if (getaddrinfo(net_tok + 1, NULL, &hints, &res) != 0) { 549 + if (getaddrinfo(host, NULL, &hints, &res) == 0) 556 + if (getaddrinfo(host, NULL, &hints, &res) != 0) { 789 + if ((err = getaddrinfo(host->name, NULL, &hints, &res0) == 0)) { 819 + if (getaddrinfo(host->name, NULL, &hints, &res0) != 0) { 826 + tcpd_warn("can't verify hostname: getaddrinfo(%s, %s) failed", 968 + if ((ret = getaddrinfo(pat + 1, NULL, &hints, &res)) == 0) [all …]
|
/openbmc/phosphor-ipmi-flash/internal/ |
H A D | sys.cpp | 118 int SysImpl::getaddrinfo(const char* node, const char* service, in getaddrinfo() function in internal::SysImpl 122 return ::getaddrinfo(node, service, hints, res); in getaddrinfo()
|
H A D | sys.hpp | 53 virtual int getaddrinfo(const char* node, const char* service, 88 int getaddrinfo(const char* node, const char* service,
|
/openbmc/phosphor-user-manager/phosphor-ldap-config/ |
H A D | utils.cpp | 58 auto result = getaddrinfo(ludppPtr->lud_host, nullptr, &hints, &servinfo); in isValidLDAPURI()
|
/openbmc/phosphor-ipmi-flash/tools/test/ |
H A D | internal_sys_mock.hpp | 38 MOCK_METHOD(int, getaddrinfo,
|
H A D | tools_net_unittest.cpp | 66 getaddrinfo(StrEq(host), StrEq(port), in expectAddrInfo() 119 getaddrinfo(StrEq(host), StrEq(port), in TEST_F()
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | bind_bhash.c | 45 err = getaddrinfo(addr, port, &hint, &res); in bind_socket()
|
/openbmc/qemu/tests/unit/ |
H A D | socket-helpers.c | 59 rc = getaddrinfo(hostname, NULL, &ai, &res); in socket_can_bind_connect()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/zsync/zsync-curl/ |
H A D | make.patch | 40 EXTRA_zsync_curl_SOURCES = getaddrinfo.h
|
/openbmc/qemu/util/ |
H A D | qemu-sockets.c | 268 rc = getaddrinfo(strlen(saddr->host) ? saddr->host : NULL, in inet_listen_saddr() 415 rc = getaddrinfo(saddr->host, saddr->port, &ai, &res); in inet_parse_connect_saddr() 426 rc = getaddrinfo(saddr->host, saddr->port, &ai, &res); in inet_parse_connect_saddr() 522 if ((rc = getaddrinfo(addr, port, &ai, &peer)) != 0) { in inet_dgram_saddr() 548 if ((rc = getaddrinfo(addr, port, &ai, &local)) != 0) { in inet_dgram_saddr()
|
/openbmc/phosphor-snmp/ |
H A D | snmp_util.cpp | 55 auto result = getaddrinfo(address.c_str(), NULL, &hints, &addr); in resolveAddress()
|
/openbmc/openbmc/meta-security/recipes-scanners/clamav/files/ |
H A D | headers_fixup.patch | 49 check_symbol_exists(getaddrinfo "netdb.h" HAVE_GETADDRINFO)
|
/openbmc/phosphor-ipmi-flash/tools/ |
H A D | net.cpp | 78 int ret = sys->getaddrinfo(host.c_str(), port.c_str(), &hints, &addrs); in sendContents()
|
/openbmc/openbmc/poky/meta/recipes-support/apr/apr/ |
H A D | 0001-Add-option-to-disable-timed-dependant-tests.patch | 34 # so getaddrinfo/gai_strerror are not used.
|
/openbmc/linux/tools/testing/vsock/ |
H A D | control.c | 45 ret = getaddrinfo(control_host, control_port, &hints, &result); in control_init()
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | xdping.c | 159 if (getaddrinfo(argv[optind], NULL, &hints, &a) || !a) { in main()
|
/openbmc/linux/tools/usb/usbip/src/ |
H A D | usbip_network.c | 272 ret = getaddrinfo(hostname, service, &hints, &res); in usbip_net_tcp_connect()
|
/openbmc/qemu/io/ |
H A D | dns-resolver.c | 90 rc = getaddrinfo(strlen(iaddr->host) ? iaddr->host : NULL, in qio_dns_resolver_lookup_sync_inet()
|
/openbmc/phosphor-logging/phosphor-rsyslog-config/ |
H A D | server-conf.cpp | 264 auto result = getaddrinfo(address.c_str(), nullptr, &hints, &res); in addressValid()
|
/openbmc/qemu/net/ |
H A D | l2tpv3.c | 633 gairet = getaddrinfo(l2tpv3->src, srcport, &hints, &result); in net_init_l2tpv3() 670 gairet = getaddrinfo(l2tpv3->dst, dstport, &hints, &result); in net_init_l2tpv3()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 147 | 222 socket.getaddrinfo("::0", "0", socket.AF_INET6,
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/ |
H A D | from-debian-to-fix-compile-errors.patch | 101 + if(getaddrinfo(COMSAThost,BIFF_serviceport,&hints,&res)) 112 +if grepfor getaddrinfo '#define NO_COMSAT' 256 + if(getaddrinfo(chad,chp,&hints,&res)) 531 +#include <netdb.h> /* getaddrinfo() */
|