diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-22 17:43:42 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:29:01 -0500 |
commit | 70783b9c9be31e98421f17327a1127021abae672 (patch) | |
tree | 39b7f53aa54d90bea4cf0e7ecf313c57ffc74e19 /tap-win32.c | |
parent | ca77d175912f7d0b2296e8e3a803a0763c00bc0b (diff) |
net: add receive_raw parameter to qemu_new_vlan_client()
Trivial patch to allow supplying a receive_raw function.
A future cleanup should combine this function pointer parameters into a
table.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'tap-win32.c')
-rw-r--r-- | tap-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-win32.c b/tap-win32.c index e2bac3e448..7d92df2aa3 100644 --- a/tap-win32.c +++ b/tap-win32.c @@ -680,7 +680,7 @@ int tap_win32_init(VLANState *vlan, const char *model, s->vc = qemu_new_vlan_client(NET_CLIENT_TYPE_TAP, vlan, NULL, model, name, NULL, tap_receive, - NULL, tap_cleanup, s); + NULL, NULL, tap_cleanup, s); snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: ifname=%s", ifname); |