diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-03-15 11:55:29 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-03-22 17:51:31 +0100 |
commit | f17c90bed11a6e277614b5a5d16434004f24d572 (patch) | |
tree | 5994d06681764c31bf5c679163ae1a3c9d1229df /include/qemu/sockets.h | |
parent | e62be8888a83aa0ab7f50eeb954deb2ec4e7201d (diff) | |
download | qemu-f17c90bed11a6e277614b5a5d16434004f24d572.zip qemu-f17c90bed11a6e277614b5a5d16434004f24d572.tar.gz qemu-f17c90bed11a6e277614b5a5d16434004f24d572.tar.bz2 |
nbd: Keep hostname and port separate
The NBD block supports an URL syntax, for which a URL parser returns
separate hostname and port fields. It also supports the traditional qemu
syntax encoded in a filename. Until now, after parsing the URL to get
each piece of information, a new string is built to be fed to socket
functions.
Instead of building a string in the URL case that is immediately parsed
again, parse the string in both cases and use the QemuOpts interface to
qemu-sockets.c.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'include/qemu/sockets.h')
-rw-r--r-- | include/qemu/sockets.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/sockets.h b/include/qemu/sockets.h index 21846f9..d225f6d 100644 --- a/include/qemu/sockets.h +++ b/include/qemu/sockets.h @@ -47,6 +47,7 @@ int recv_all(int fd, void *buf, int len1, bool single_read); */ typedef void NonBlockingConnectHandler(int fd, void *opaque); +InetSocketAddress *inet_parse(const char *str, Error **errp); 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); |