mirror of https://github.com/xemu-project/xemu.git
tap-win32: stubs to fix win32 build
Add missing stubs to win32 to fix link failure. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reported-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
f71d61216e
commit
aee0bf7d8d
|
@ -752,3 +752,13 @@ struct vhost_net *tap_get_vhost_net(NetClientState *nc)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int tap_has_vnet_hdr_len(NetClientState *nc, int len)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void tap_set_vnet_hdr_len(NetClientState *nc, int len)
|
||||||
|
{
|
||||||
|
assert(0);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue