Files
adsb-tools/adsbus/asyncaddrinfo.h
2016-03-01 19:43:11 -08:00

9 lines
256 B
C

#pragma once
struct addrinfo;
void asyncaddrinfo_init(size_t threads);
void asyncaddrinfo_cleanup(void);
int asyncaddrinfo_resolve(const char *node, const char *service, struct addrinfo *hints);
int asyncaddrinfo_result(int fd, struct addrinfo **addrs);