提交 6e513a78 编写于 作者: M Marc-André Lureau 提交者: Samuel Thibault

slirp: remove slirp_instances list

Now that polling is done per-instance, we don't need a global list of
slirp instances.
Signed-off-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: NSamuel Thibault <samuel.thibault@ens-lyon.org>
上级 1ab67b98
......@@ -48,9 +48,6 @@ static const uint8_t special_ethaddr[ETH_ALEN] = {
unsigned curtime;
static QTAILQ_HEAD(, Slirp) slirp_instances =
QTAILQ_HEAD_INITIALIZER(slirp_instances);
static struct in_addr dns_addr;
#ifndef _WIN32
static struct in6_addr dns6_addr;
......@@ -333,7 +330,6 @@ Slirp *slirp_init(int restricted, bool in_enabled, struct in_addr vnetwork,
#ifdef WITH_QEMU
slirp_state_register(slirp);
#endif
QTAILQ_INSERT_TAIL(&slirp_instances, slirp, entry);
return slirp;
}
......@@ -348,7 +344,6 @@ void slirp_cleanup(Slirp *slirp)
g_free(e);
}
QTAILQ_REMOVE(&slirp_instances, slirp, entry);
#ifdef WITH_QEMU
slirp_state_unregister(slirp);
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册