diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-10 10:58:40 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-11 10:19:48 -0500 |
commit | f4c94c7c51f6ede5c33ab5879c6013b64ba2df82 (patch) | |
tree | 17abf2f1bab6495c13fe56d5cca2df8217e9ec43 /qemu_socket.h | |
parent | 108af7b957371423187b1498729bd6a467aae5ef (diff) |
sockets: add inet_connect_opts
Add inet_connect_opts(). Does the same as inet_connect(), but uses
QemuOpts. inet_connect() is a compatibility wrapper for
inet_connect_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.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu_socket.h b/qemu_socket.h index 354c11459f..662f427279 100644 --- a/qemu_socket.h +++ b/qemu_socket.h @@ -38,6 +38,7 @@ int send_all(int fd, const void *buf, int len1); /* New, ipv6-ready socket helper functions, see qemu-sockets.c */ int inet_listen(const char *str, char *ostr, int olen, int socktype, int port_offset); +int inet_connect_opts(QemuOpts *opts); int inet_connect(const char *str, int socktype); int unix_listen_opts(QemuOpts *opts); |