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