summaryrefslogtreecommitdiff
path: root/qemu_socket.h
diff options
context:
space:
mode:
authorOrit Wasserman <owasserm@redhat.com>2012-09-24 13:11:08 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2012-09-25 19:05:55 -0500
commit5db5f44cb4b7f24b9e0efdefc9015e36b7c34881 (patch)
treeaa9d4b99920842446b7d88a28eedf17874533f60 /qemu_socket.h
parent05bc1d8a4b2f77df8cc9880a552047e30c16f1f8 (diff)
downloadqemu-5db5f44cb4b7f24b9e0efdefc9015e36b7c34881.tar.gz
Separate inet_connect into inet_connect (blocking) and inet_nonblocking_connect
No need to add non blocking parameters to the blocking inet_connect add block parameter for inet_connect_opts instead of using QemuOpt "block". Signed-off-by: Orit Wasserman <owasserm@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu_socket.h')
-rw-r--r--qemu_socket.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/qemu_socket.h b/qemu_socket.h
index 30ae6af8b8..80696aa6d8 100644
--- a/qemu_socket.h
+++ b/qemu_socket.h
@@ -42,8 +42,11 @@ int send_all(int fd, const void *buf, int len1);
int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp);
int inet_listen(const char *str, char *ostr, int olen,
int socktype, int port_offset, Error **errp);
-int inet_connect_opts(QemuOpts *opts, bool *in_progress, Error **errp);
-int inet_connect(const char *str, bool block, bool *in_progress, Error **errp);
+int inet_connect_opts(QemuOpts *opts, bool block, bool *in_progress,
+ Error **errp);
+int inet_connect(const char *str, Error **errp);
+int inet_nonblocking_connect(const char *str, bool *in_progress,
+ Error **errp);
int inet_dgram_opts(QemuOpts *opts);
const char *inet_strfamily(int family);