aboutsummaryrefslogtreecommitdiff
path: root/net/vmnet_int.h
diff options
context:
space:
mode:
authorVladislav Yaroshchuk <vladislav.yaroshchuk@jetbrains.com>2022-03-17 20:28:34 +0300
committerJason Wang <jasowang@redhat.com>2022-05-17 16:48:23 +0800
commit81ad2964e93848fc0998145043c395dea67f00da (patch)
treeae0e9e4700702879e949b385fb040451aff43f0d /net/vmnet_int.h
parente2c1d78da3223e8b39c14cce3da9e62655c1ddbb (diff)
net/vmnet: add vmnet backends to qapi/net
Create separate netdevs for each vmnet operating mode: - vmnet-host - vmnet-shared - vmnet-bridged Reviewed-by: Akihiko Odaki <akihiko.odaki@gmail.com> Tested-by: Akihiko Odaki <akihiko.odaki@gmail.com> Acked-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Vladislav Yaroshchuk <Vladislav.Yaroshchuk@jetbrains.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net/vmnet_int.h')
-rw-r--r--net/vmnet_int.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/vmnet_int.h b/net/vmnet_int.h
new file mode 100644
index 0000000000..c383038a1d
--- /dev/null
+++ b/net/vmnet_int.h
@@ -0,0 +1,25 @@
+/*
+ * vmnet_int.h
+ *
+ * Copyright(c) 2022 Vladislav Yaroshchuk <vladislav.yaroshchuk@jetbrains.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ *
+ */
+#ifndef VMNET_INT_H
+#define VMNET_INT_H
+
+#include "qemu/osdep.h"
+#include "vmnet_int.h"
+#include "clients.h"
+
+#include <vmnet/vmnet.h>
+
+typedef struct VmnetState {
+ NetClientState nc;
+
+} VmnetState;
+
+
+#endif /* VMNET_INT_H */