]> git.proxmox.com Git - qemu.git/commitdiff
slirp: Port redirection option behave differently on Linux and Windows
authorTaimoor Mirza <tmirza@codesourcery.com>
Thu, 15 Aug 2013 18:13:28 +0000 (23:13 +0500)
committerMichael Tokarev <mjt@tls.msk.ru>
Sun, 1 Sep 2013 14:52:30 +0000 (18:52 +0400)
port redirection code uses SO_REUSEADDR socket option before binding to
host port. Behavior of SO_REUSEADDR is different on Windows and Linux.
Relaunching QEMU with same host and guest port redirection values on Linux
throws error but on Windows it does not throw any error.
Problem is discussed in http://lists.gnu.org/archive/html/qemu-devel/2013-04/msg03089.html

Signed-off-by: Taimoor Mirza <tmirza@codesourcery.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
slirp/socket.c

index 8e8819cf30d705dddca3a2382e278d6c1a00e589..25d60e7a89b20bcdf30d0d03beb2db3b6e205e28 100644 (file)
@@ -627,7 +627,9 @@ tcp_listen(Slirp *slirp, uint32_t haddr, u_int hport, uint32_t laddr,
        addr.sin_port = hport;
 
        if (((s = qemu_socket(AF_INET,SOCK_STREAM,0)) < 0) ||
+#ifndef _WIN32
            (qemu_setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int)) < 0) ||
+#endif
            (bind(s,(struct sockaddr *)&addr, sizeof(addr)) < 0) ||
            (listen(s,1) < 0)) {
                int tmperrno = errno; /* Don't clobber the real reason we failed */