const correctness to match getaddrinfo() signature
This commit is contained in:
@@ -83,7 +83,7 @@ void asyncaddrinfo_cleanup() {
|
||||
asyncaddrinfo_threads = NULL;
|
||||
}
|
||||
|
||||
int asyncaddrinfo_resolve(const char *node, const char *service, struct addrinfo *hints) {
|
||||
int asyncaddrinfo_resolve(const char *node, const char *service, const struct addrinfo *hints) {
|
||||
int fds[2];
|
||||
assert(!socketpair(AF_UNIX, SOCK_SEQPACKET | SOCK_CLOEXEC, 0, fds));
|
||||
|
||||
|
||||
@@ -4,5 +4,5 @@ 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_resolve(const char *node, const char *service, const struct addrinfo *hints);
|
||||
int asyncaddrinfo_result(int fd, struct addrinfo **addrs);
|
||||
|
||||
Reference in New Issue
Block a user