diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-08 19:58:31 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-15 09:32:03 -0500 |
commit | f71058439974f6236ecc0a8eeb58ccc2e8fc87f9 (patch) | |
tree | dff36303bdf4f4c5f6bd4b69aceca2f81e0f939c /qemu-common.h | |
parent | 283c7c63f5c56c4d0340fb39093fb47e75cb122e (diff) |
net: refactor packet queueing code
The packet queue code is fairly standalone, has some complex details and
easily reusable. It makes sense to split it out on its own. This patch
doesn't contain any functional changes.
Patchworks-ID: 35511
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h index 820dd37a5d..8551862c51 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -181,6 +181,7 @@ typedef struct TextConsole TextConsole; typedef TextConsole QEMUConsole; typedef struct CharDriverState CharDriverState; typedef struct VLANState VLANState; +typedef struct VLANClientState VLANClientState; typedef struct QEMUFile QEMUFile; typedef struct i2c_bus i2c_bus; typedef struct i2c_slave i2c_slave; |