mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
sockets: Use new QAPI cloning
Rather than rolling our own clone via an expensive conversion in and back out of QObject, use the new clone visitor. Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1465490926-28625-15-git-send-email-eblake@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
committed by
Markus Armbruster
parent
a15fcc3cf6
commit
37f9e0a2b6
@ -23,6 +23,7 @@
|
||||
#include "io/channel-socket.h"
|
||||
#include "io/channel-watch.h"
|
||||
#include "trace.h"
|
||||
#include "qapi/clone-visitor.h"
|
||||
|
||||
#define SOCKET_MAX_FDS 16
|
||||
|
||||
@ -189,7 +190,7 @@ void qio_channel_socket_connect_async(QIOChannelSocket *ioc,
|
||||
OBJECT(ioc), callback, opaque, destroy);
|
||||
SocketAddress *addrCopy;
|
||||
|
||||
qapi_copy_SocketAddress(&addrCopy, addr);
|
||||
addrCopy = QAPI_CLONE(SocketAddress, addr);
|
||||
|
||||
/* socket_connect() does a non-blocking connect(), but it
|
||||
* still blocks in DNS lookups, so we must use a thread */
|
||||
@ -251,7 +252,7 @@ void qio_channel_socket_listen_async(QIOChannelSocket *ioc,
|
||||
OBJECT(ioc), callback, opaque, destroy);
|
||||
SocketAddress *addrCopy;
|
||||
|
||||
qapi_copy_SocketAddress(&addrCopy, addr);
|
||||
addrCopy = QAPI_CLONE(SocketAddress, addr);
|
||||
|
||||
/* socket_listen() blocks in DNS lookups, so we must use a thread */
|
||||
trace_qio_channel_socket_listen_async(ioc, addr);
|
||||
@ -331,8 +332,8 @@ void qio_channel_socket_dgram_async(QIOChannelSocket *ioc,
|
||||
struct QIOChannelSocketDGramWorkerData *data = g_new0(
|
||||
struct QIOChannelSocketDGramWorkerData, 1);
|
||||
|
||||
qapi_copy_SocketAddress(&data->localAddr, localAddr);
|
||||
qapi_copy_SocketAddress(&data->remoteAddr, remoteAddr);
|
||||
data->localAddr = QAPI_CLONE(SocketAddress, localAddr);
|
||||
data->remoteAddr = QAPI_CLONE(SocketAddress, remoteAddr);
|
||||
|
||||
trace_qio_channel_socket_dgram_async(ioc, localAddr, remoteAddr);
|
||||
qio_task_run_in_thread(task,
|
||||
|
Reference in New Issue
Block a user