From df69440d05f1133a9053e19a9bf576c8b13514b9 Mon Sep 17 00:00:00 2001 From: Kim Vandry Date: Sat, 7 Sep 2013 12:45:50 -0400 Subject: libcurl: New options to bind DNS to local interfaces or IP addresses --- lib/hostip.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'lib/hostip.h') diff --git a/lib/hostip.h b/lib/hostip.h index a38f732a4..997800a88 100644 --- a/lib/hostip.h +++ b/lib/hostip.h @@ -200,6 +200,27 @@ extern sigjmp_buf curl_jmpenv; */ CURLcode Curl_set_dns_servers(struct SessionHandle *data, char *servers); +/* + * Function provided by the resolver backend to set + * outgoing interface to use for DNS requests + */ +CURLcode Curl_set_dns_interface(struct SessionHandle *data, + const char *interface); + +/* + * Function provided by the resolver backend to set + * local IPv4 address to use as source address for DNS requests + */ +CURLcode Curl_set_dns_local_ip4(struct SessionHandle *data, + const char *local_ip4); + +/* + * Function provided by the resolver backend to set + * local IPv6 address to use as source address for DNS requests + */ +CURLcode Curl_set_dns_local_ip6(struct SessionHandle *data, + const char *local_ip6); + /* * Clean off entries from the cache */ -- cgit v1.2.3