summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2009-09-10 10:58:41 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-09-11 10:19:48 -0500
commite5bc776fa9b764b52d85b00c57e300cb9d2faec1 (patch)
tree400c58ef69825a250ac5d40add2a4288c725ba40 /qemu_socket.h
parentsockets: add inet_connect_opts (diff)
downloadqemu-kvm-e5bc776fa9b764b52d85b00c57e300cb9d2faec1.tar.gz
qemu-kvm-e5bc776fa9b764b52d85b00c57e300cb9d2faec1.tar.bz2
qemu-kvm-e5bc776fa9b764b52d85b00c57e300cb9d2faec1.zip
sockets: add inet_listen_opts
Add inet_listen_opts(). Does the same as inet_listen(), but uses QemuOpts. inet_listen() is a compatibility wrapper for inet_listen_opts() now and should go away some day. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu_socket.h')
-rw-r--r--qemu_socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu_socket.h b/qemu_socket.h
index 662f42727..6ee9510fa 100644
--- a/qemu_socket.h
+++ b/qemu_socket.h
@@ -36,6 +36,7 @@ void socket_set_nonblock(int fd);
int send_all(int fd, const void *buf, int len1);
/* New, ipv6-ready socket helper functions, see qemu-sockets.c */
+int inet_listen_opts(QemuOpts *opts, int port_offset);
int inet_listen(const char *str, char *ostr, int olen,
int socktype, int port_offset);
int inet_connect_opts(QemuOpts *opts);