Re: [Qemu-devel] [PATCH v3 3/5] sockets: remove use of QemuOpts from socket_connect

2016-01-15 Thread Eric Blake
On 01/11/2016 06:17 AM, Daniel P. Berrange wrote: > The socket_connect method accepts a QAPI SocketAddress object > which it then turns into QemuOpts before calling the > inet_connect_opts/unix_connect_opts helper methods. By > converting the latter to use QAPI SocketAddress directly, > the QemuOpt

[Qemu-devel] [PATCH v3 3/5] sockets: remove use of QemuOpts from socket_connect

2016-01-11 Thread Daniel P. Berrange
The socket_connect method accepts a QAPI SocketAddress object which it then turns into QemuOpts before calling the inet_connect_opts/unix_connect_opts helper methods. By converting the latter to use QAPI SocketAddress directly, the QemuOpts conversion step can be eliminated Signed-off-by: Daniel P