summary refs log tree commit diff stats
path: root/include/qemu
diff options
context:
space:
mode:
authorAnthony Liguori <anthony@codemonkey.ws>2013-10-09 07:52:21 -0700
committerAnthony Liguori <anthony@codemonkey.ws>2013-10-09 07:52:21 -0700
commit9e8f8b1cd8e1b85dc93c367c4745f9944079a37b (patch)
treea4368aa23843f61829c01eb25a0deebee2262642 /include/qemu
parentdfe22799751818115ed6d36bedc8a55b2026de3a (diff)
parent04fd1c789677fe121cb9546c652d088c994477fb (diff)
downloadfocaccia-qemu-9e8f8b1cd8e1b85dc93c367c4745f9944079a37b.tar.gz
focaccia-qemu-9e8f8b1cd8e1b85dc93c367c4745f9944079a37b.zip
Merge remote-tracking branch 'sweil/mingw' into staging
# By Sebastian Ottlik
# Via Stefan Weil
* sweil/mingw:
  util: call socket_set_fast_reuse instead of setting SO_REUSEADDR
  slirp: call socket_set_fast_reuse instead of setting SO_REUSEADDR
  net: call socket_set_fast_reuse instead of setting SO_REUSEADDR
  gdbstub: call socket_set_fast_reuse instead of setting SO_REUSEADDR
  util: add socket_set_fast_reuse function which will replace setting SO_REUSEADDR

Message-id: 1380735690-24009-1-git-send-email-sw@weilnetz.de
Signed-off-by: Anthony Liguori <anthony@codemonkey.ws>
Diffstat (limited to 'include/qemu')
-rw-r--r--include/qemu/sockets.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/sockets.h b/include/qemu/sockets.h
index c5174d76a7..45588d7d58 100644
--- a/include/qemu/sockets.h
+++ b/include/qemu/sockets.h
@@ -39,6 +39,7 @@ int socket_set_cork(int fd, int v);
 int socket_set_nodelay(int fd);
 void qemu_set_block(int fd);
 void qemu_set_nonblock(int fd);
+int socket_set_fast_reuse(int fd);
 int send_all(int fd, const void *buf, int len1);
 int recv_all(int fd, void *buf, int len1, bool single_read);