From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38602) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTCOw-0002Ay-Ax for qemu-devel@nongnu.org; Tue, 30 Oct 2012 10:02:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTCOm-0006HD-S7 for qemu-devel@nongnu.org; Tue, 30 Oct 2012 10:02:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTCOm-0006H7-K1 for qemu-devel@nongnu.org; Tue, 30 Oct 2012 10:02:32 -0400 Date: Tue, 30 Oct 2012 16:04:50 +0200 From: "Michael S. Tsirkin" Message-ID: <20121030140450.GA27739@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] tap-win32: stubs to fix win32 build List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Anthony Liguori , Stefan Hajnoczi Add missing stubs to win32 to fix link failure. Signed-off-by: Michael S. Tsirkin Reported-by: Paolo Bonzini --- net/tap-win32.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/net/tap-win32.c b/net/tap-win32.c index 22dad3f..8d2d32b 100644 --- a/net/tap-win32.c +++ b/net/tap-win32.c @@ -752,3 +752,13 @@ struct vhost_net *tap_get_vhost_net(NetClientState *nc) { 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); +} -- MST