diff options
| author | Mark McLoughlin <markmc@redhat.com> | 2009-11-25 18:49:29 +0000 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:34 -0600 |
| commit | 68da46eeb6cbe60b03f7afcb4e3cd1b5f14cc259 (patch) | |
| tree | 9055cb348d473d380a5d082a7056abb6c7f1e321 /net.h | |
| parent | 658788c5609ccd745bb800ed156bf6f9a19398dc (diff) | |
| download | focaccia-qemu-68da46eeb6cbe60b03f7afcb4e3cd1b5f14cc259.tar.gz focaccia-qemu-68da46eeb6cbe60b03f7afcb4e3cd1b5f14cc259.zip | |
net: remove qemu_new_vlan_client()
... and VLANClientState::opaque and qemu_find_vlan_client(). All of these are now unused 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.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/net.h b/net.h index 4de20de355..9185bcf794 100644 --- a/net.h +++ b/net.h @@ -64,7 +64,6 @@ struct VLANClientState { NetCleanup *cleanup; LinkStatusChanged *link_status_changed; int link_down; - void *opaque; QTAILQ_ENTRY(VLANClientState) next; struct VLANState *vlan; VLANClientState *peer; @@ -101,19 +100,7 @@ NICState *qemu_new_nic(NetClientInfo *info, const char *model, const char *name, void *opaque); -VLANClientState *qemu_new_vlan_client(net_client_type type, - VLANState *vlan, - VLANClientState *peer, - const char *model, - const char *name, - NetCanReceive *can_receive, - NetReceive *receive, - NetReceive *receive_raw, - NetReceiveIOV *receive_iov, - NetCleanup *cleanup, - void *opaque); void qemu_del_vlan_client(VLANClientState *vc); -VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque); VLANClientState *qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id, const char *client_str); int qemu_can_send_packet(VLANClientState *vc); |