MCPcopy Create free account
hub / github.com/FastLED/FastLED / getaddrinfo

Function getaddrinfo

src/platforms/posix/socket_posix.cpp.hpp:111–114  ·  view source on GitHub ↗

Name and Service Translation - direct passthrough to POSIX API

Source from the content-addressed store, hash-verified

109
110// Name and Service Translation - direct passthrough to POSIX API
111int getaddrinfo(const char *node, const char *service,
112 const struct addrinfo *hints, struct addrinfo **res) {
113 return ::getaddrinfo(node, service, hints, res);
114}
115
116void freeaddrinfo(struct addrinfo *res) {
117 ::freeaddrinfo(res);

Callers 1

connectMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected