]> git.proxmox.com Git - mirror_qemu.git/commit
sockets: New helper socket_address_crumple()
authorMarkus Armbruster <armbru@redhat.com>
Thu, 30 Mar 2017 17:43:15 +0000 (19:43 +0200)
committerMax Reitz <mreitz@redhat.com>
Mon, 3 Apr 2017 15:11:39 +0000 (17:11 +0200)
commit216411b83967ae19e3c9c520e13ceb8bb383890c
tree6b6a983a5e3aeadcf39ed6180287607ff3478d3b
parent8bc0673f6dc2485b46da6de8204aaca2a711acea
sockets: New helper socket_address_crumple()

SocketAddress is a simple union, and simple unions are awkward: they
have their variant members wrapped in a "data" object on the wire, and
require additional indirections in C.  I intend to limit its use to
existing external interfaces.  New ones should use SocketAddressFlat.
I further intend to convert all internal interfaces to
SocketAddressFlat.  This helper should go away then.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1490895797-29094-8-git-send-email-armbru@redhat.com
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
include/qemu/sockets.h
util/qemu-sockets.c