aboutsummaryrefslogtreecommitdiff
path: root/libslirp.h
diff options
context:
space:
mode:
authorEd Swierk <eswierk@aristanetworks.com>2009-08-20 19:00:31 -0700
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-27 20:46:58 -0500
commitce220b69ddd15c1981cd32346f745b609f7a525c (patch)
tree748ab96f13a066005d1af90db78568ece3716eb4 /libslirp.h
parent1c53d0d38dc187ba978f2748e8c4d7ab67bcc063 (diff)
downloadslirp-ce220b69ddd15c1981cd32346f745b609f7a525c.zip
slirp-ce220b69ddd15c1981cd32346f745b609f7a525c.tar.gz
slirp-ce220b69ddd15c1981cd32346f745b609f7a525c.tar.bz2
slirp: Read host DNS config on demand
Currently the qemu user-mode networking stack reads the host DNS configuration (/etc/resolv.conf or the Windows equivalent) only once when qemu starts. This causes name lookups in the guest to fail if the host is moved to a different network from which the original DNS servers are unreachable, a common occurrence when the host is a laptop. This patch changes the slirp code to read the host DNS configuration on demand, caching the results for at most 1 second to avoid unnecessary overhead if name lookups occur in rapid succession. On non-Windows hosts, /etc/resolv.conf is re-read only if the file has been replaced or if its size or mtime has changed. Signed-off-by: Ed Swierk <eswierk@aristanetworks.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'libslirp.h')
-rw-r--r--libslirp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libslirp.h b/libslirp.h
index da11ef2..579d85d 100644
--- a/libslirp.h
+++ b/libslirp.h
@@ -8,6 +8,8 @@
struct Slirp;
typedef struct Slirp Slirp;
+int get_dns_addr(struct in_addr *pdns_addr);
+
Slirp *slirp_init(int restricted, struct in_addr vnetwork,
struct in_addr vnetmask, struct in_addr vhost,
const char *vhostname, const char *tftp_path,