From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MDmNm-0002rI-5A for qemu-devel@nongnu.org; Mon, 08 Jun 2009 17:27:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MDmNg-0002ps-LD for qemu-devel@nongnu.org; Mon, 08 Jun 2009 17:27:52 -0400 Received: from [199.232.76.173] (port=40847 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MDmNg-0002pp-EG for qemu-devel@nongnu.org; Mon, 08 Jun 2009 17:27:48 -0400 Received: from main.gmane.org ([80.91.229.2]:41361 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MDmNg-0000Ds-1t for qemu-devel@nongnu.org; Mon, 08 Jun 2009 17:27:48 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDmNb-0003QR-A0 for qemu-devel@nongnu.org; Mon, 08 Jun 2009 21:27:43 +0000 Received: from 204.147.152.1 ([204.147.152.1]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 21:27:43 +0000 Received: from void by 204.147.152.1 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 21:27:43 +0000 From: Consul Date: Mon, 08 Jun 2009 14:27:30 -0700 Message-ID: References: <49C0BFCD.1040304@siemens.com> <49C6F2AA.40408@codemonkey.ws><49C91829.6000606@siemens.com> <49CE5DD1.1010302@codemonkey.ws> <7A9475ADF255438F86B48879B553733E@FSCPC> <4A09320F.1000705@siemens.com><5F412034D5F7477A95980A3554CCD5DC@FSCPC> <22F2AA9D186E4B179211713E01CD2FDE@FSCPC> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit In-Reply-To: Sender: news Subject: [Qemu-devel] Re: [PATCH] Add pcap-based host network bridge List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Alex wrote: > "Sebastian Herbszt" wrote in message > news:C0648AF8B9CD4DE5A37965D11776A215@FSCPC... > >> Find jan-pcap-updated-qdev3.diff attached. >> > > Thanks. I'll give it a shot next Monday. > >> Is your tree available somewhere? >> > > No, it's private. > > Alex > This small patch was needed to compile it. Otherwise it appears to work... At least XP guest dot authenticated on the network ok. The message box "Loading your personal settings..." appears to be sitting on the screen forever, but this is probably unrelated to your pcap patch. $ git diff diff --git a/net.c b/net.c index e4b3740..ff2cc14 100644 --- a/net.c +++ b/net.c @@ -94,10 +94,10 @@ #endif #if defined(CONFIG_PCAP) -#include #ifdef _WIN32 -#include +#define HAVE_REMOTE #endif /* _WIN32 */ +#include #endif /* CONFIG_PCAP */ #if defined(__OpenBSD__)