From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40728) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avkgE-0000JK-QN for qemu-devel@nongnu.org; Thu, 28 Apr 2016 08:04:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1avkg8-0006Si-LU for qemu-devel@nongnu.org; Thu, 28 Apr 2016 08:04:26 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:53058) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avkg8-0006RO-F6 for qemu-devel@nongnu.org; Thu, 28 Apr 2016 08:04:20 -0400 Date: Thu, 28 Apr 2016 14:04:17 +0200 From: Samuel Thibault Message-ID: <20160428120417.GD3153@var.bordeaux.inria.fr> References: <3CC6094E-027E-417D-A110-4E60100A9756@gmail.com> <20160426190042.GC25204@work-vm> <9DF8AED7-D573-4CE4-BA8C-897B2A89A183@gmail.com> <571FCBBF.8020405@redhat.com> <7516025E-F08C-4DD4-B1D1-E822C96B7B0A@gmail.com> <57205D8A.5010107@redhat.com> <51A2E196-A95B-4133-BC9E-2B820502633E@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51A2E196-A95B-4133-BC9E-2B820502633E@gmail.com> Subject: Re: [Qemu-devel] Is anyone able to load a web page from a guest operating system? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Programmingkid Cc: Thomas Huth , Peter Maydell , "Dr. David Alan Gilbert" , qemu-devel qemu-devel Programmingkid, on Wed 27 Apr 2016 20:25:26 -0400, wrote: > Found out which patch was causing problems. This one: > > commit 5379229a2708df3a1506113315214c3ce5325859 > Author: Guillaume Subiron > Date: Sat Dec 19 22:24:59 2015 +0100 > > slirp: Factorizing address translation Thanks! I managed to get access to a darwin system. It seems that their sendto() doesn't like being passed an addrlen which is greater than required: the patch makes qemu pass sizeof(struct sockaddr_storage) instead of sizeof(struct sockaddr_in). That's quite unexpected, but we'll have to work around that, working on a patch now. Samuel