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 <maet...@subiron.org> > 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