From: Paul Burton Date: Sun, 22 Jun 2014 10:25:34 +0000 (+0100) Subject: linux-user: support SO_ACCEPTCONN getsockopt option X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=aec1ca411e8b772823d88eb64d86478a381cb819;p=qmiga%2Fqemu.git linux-user: support SO_ACCEPTCONN getsockopt option Translate the SO_ACCEPTCONN option to the host value & execute the syscall as expected. Signed-off-by: Paul Burton Signed-off-by: Riku Voipio --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 8d13781bf8..b1e57df4a3 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -1652,6 +1652,9 @@ static abi_long do_getsockopt(int sockfd, int level, int optname, case TARGET_SO_RCVLOWAT: optname = SO_RCVLOWAT; goto int_case; + case TARGET_SO_ACCEPTCONN: + optname = SO_ACCEPTCONN; + goto int_case; default: goto int_case; }