summaryrefslogtreecommitdiff
path: root/net.h
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2009-10-08 19:58:32 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-15 09:32:03 -0500
commit9a6ecb308b1c668fff84d56a356dbd595c51d556 (patch)
treea84ed70921e660344e4791e8d6a6ab5ee59c6799 /net.h
parentf71058439974f6236ecc0a8eeb58ccc2e8fc87f9 (diff)
downloadqemu-9a6ecb308b1c668fff84d56a356dbd595c51d556.tar.gz
net: add queue for peer-to-peer packet forwarding
Now that we have re-factored the packet queue code, we can re-use it for peer-to-peer also. Patchworks-ID: 35520 Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'net.h')
-rw-r--r--net.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/net.h b/net.h
index e79f524d53..439de2a842 100644
--- a/net.h
+++ b/net.h
@@ -28,6 +28,7 @@ struct VLANClientState {
QTAILQ_ENTRY(VLANClientState) next;
struct VLANState *vlan;
VLANClientState *peer;
+ NetQueue *send_queue;
char *model;
char *name;
char info_str[256];