-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recursive DNS implementation #286
Conversation
@@ -31,7 +31,8 @@ typedef int (*dns_fallback_cb)(const char *name, void *ctx, struct in_addr* addr | |||
|
|||
int ziti_dns_setup(tunneler_context tnlr, const char *dns_addr, const char *dns_cidr); | |||
|
|||
void ziti_dns_set_fallback(struct uv_loop_s *l, dns_fallback_cb fb, void *ctx); | |||
int ziti_dns_set_upstream(uv_loop_t *l, const char *host, uint16_t port); | |||
|
|||
void ziti_dns_set_manager(dns_manager *mgr); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we also remove ziti_dns_set_manager
(and the dns_manager types) now?
@@ -31,7 +31,8 @@ typedef int (*dns_fallback_cb)(const char *name, void *ctx, struct in_addr* addr | |||
|
|||
int ziti_dns_setup(tunneler_context tnlr, const char *dns_addr, const char *dns_cidr); | |||
|
|||
void ziti_dns_set_fallback(struct uv_loop_s *l, dns_fallback_cb fb, void *ctx); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dns_fallback_cb
typedef (on line 30) is no longer referenced - should it be removed?
No description provided.