summaryrefslogtreecommitdiffstats
path: root/net/vde.h
diff options
context:
space:
mode:
authorAnthony Liguori2012-07-23 20:15:34 +0200
committerAnthony Liguori2012-07-23 20:15:34 +0200
commita21143486b9c6d7a50b7b62877c02b3c686943cb (patch)
tree4bbc889465188e469317bfd89b110a99867a72e8 /net/vde.h
parentMerge remote-tracking branch 'stefanha/trivial-patches' into staging (diff)
parentremove unused QemuOpts parameter from net init functions (diff)
downloadqemu-a21143486b9c6d7a50b7b62877c02b3c686943cb.tar.gz
qemu-a21143486b9c6d7a50b7b62877c02b3c686943cb.tar.xz
qemu-a21143486b9c6d7a50b7b62877c02b3c686943cb.zip
Merge remote-tracking branch 'stefanha/net' into staging
* stefanha/net: remove unused QemuOpts parameter from net init functions convert net_init_bridge() to NetClientOptions convert net_init_tap() to NetClientOptions convert net_init_vde() to NetClientOptions convert net_init_socket() to NetClientOptions convert net_init_slirp() to NetClientOptions convert net_init_dump() to NetClientOptions convert net_init_nic() to NetClientOptions convert net_client_init() to OptsVisitor hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated) qapi schema: add Netdev types qapi schema: remove trailing whitespace qapi: introduce OptsVisitor expose QemuOpt and QemuOpts struct definitions to interested parties qapi: introduce "size" type qapi: generate C types for fixed-width integers qapi: add test case for deallocating traversal of incomplete structure qapi: fix error propagation MAINTAINERS: Replace net maintainer Mark McLoughlin with Stefan Hajnoczi
Diffstat (limited to 'net/vde.h')
-rw-r--r--net/vde.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/vde.h b/net/vde.h
index 732e5756f6..ad502ef4de 100644
--- a/net/vde.h
+++ b/net/vde.h
@@ -25,11 +25,12 @@
#define QEMU_NET_VDE_H
#include "qemu-common.h"
-#include "qemu-option.h"
+#include "qapi-types.h"
#ifdef CONFIG_VDE
-int net_init_vde(QemuOpts *opts, const char *name, VLANState *vlan);
+int net_init_vde(const NetClientOptions *opts, const char *name,
+ VLANState *vlan);
#endif /* CONFIG_VDE */