diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-06-24 14:42:31 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-29 08:52:49 -0500 |
commit | 9f8bd0421dc03b2640ac2d0a4d702354a218b2ab (patch) | |
tree | b866bf7d4864fac7a8313bdf04cca2f997242951 /slirp/if.c | |
parent | 460fec67ee3807bb2eb189587ffe803a48f317e5 (diff) | |
download | qemu-9f8bd0421dc03b2640ac2d0a4d702354a218b2ab.tar.gz qemu-9f8bd0421dc03b2640ac2d0a4d702354a218b2ab.tar.bz2 qemu-9f8bd0421dc03b2640ac2d0a4d702354a218b2ab.zip |
slirp: Use internal state in interface
This now also exports the internal state to the slirp users in qemu,
returning it from slirp_init and expecting it along with service
invocations. Additionally provide an opaque value interface for the
callbacks from slirp into the qemu core.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'slirp/if.c')
-rw-r--r-- | slirp/if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/if.c b/slirp/if.c index 75b15e400c..0f04e13989 100644 --- a/slirp/if.c +++ b/slirp/if.c @@ -162,7 +162,7 @@ if_start(Slirp *slirp) again: /* check if we can really output */ - if (!slirp_can_output()) + if (!slirp_can_output(slirp->opaque)) return; /* |