qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-trivial] [PATCH] util/qemu-sockets: Drop unused helper socket_address_to_string()
       [not found] <20170608031124.8031-1-maozy.fnst@cn.fujitsu.com>
@ 2017-06-08 13:05 ` Paolo Bonzini
  2017-06-27 12:58 ` Michael Tokarev
  1 sibling, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2017-06-08 13:05 UTC (permalink / raw)
  To: Mao Zhongyi, qemu-devel; +Cc: berrange, kraxel, armbru, qemu-trivial@nongnu.org

Cc: qemu-trivial@nongnu.org

On 08/06/2017 05:11, Mao Zhongyi wrote:
> Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com>
> ---
>  include/qemu/sockets.h | 15 ---------------
>  util/qemu-sockets.c    | 34 ----------------------------------
>  2 files changed, 49 deletions(-)
> 
> diff --git a/include/qemu/sockets.h b/include/qemu/sockets.h
> index 7abffc4..8eb0172 100644
> --- a/include/qemu/sockets.h
> +++ b/include/qemu/sockets.h
> @@ -106,21 +106,6 @@ SocketAddress *socket_local_address(int fd, Error **errp);
>  SocketAddress *socket_remote_address(int fd, Error **errp);
>  
>  /**
> - * socket_address_to_string:
> - * @addr: the socket address struct
> - * @errp: pointer to uninitialized error object
> - *
> - * Get the string representation of the socket
> - * address. A pointer to the char array containing
> - * string format will be returned, the caller is
> - * required to release the returned value when no
> - * longer required with g_free.
> - *
> - * Returns: the socket address in string format, or NULL on error
> - */
> -char *socket_address_to_string(struct SocketAddress *addr, Error **errp);
> -
> -/**
>   * socket_address_flatten:
>   * @addr: the socket address to flatten
>   *
> diff --git a/util/qemu-sockets.c b/util/qemu-sockets.c
> index b39ae74..08b1a26 100644
> --- a/util/qemu-sockets.c
> +++ b/util/qemu-sockets.c
> @@ -1301,40 +1301,6 @@ SocketAddress *socket_remote_address(int fd, Error **errp)
>      return socket_sockaddr_to_address(&ss, sslen, errp);
>  }
>  
> -char *socket_address_to_string(struct SocketAddress *addr, Error **errp)
> -{
> -    char *buf;
> -    InetSocketAddress *inet;
> -
> -    switch (addr->type) {
> -    case SOCKET_ADDRESS_TYPE_INET:
> -        inet = &addr->u.inet;
> -        if (strchr(inet->host, ':') == NULL) {
> -            buf = g_strdup_printf("%s:%s", inet->host, inet->port);
> -        } else {
> -            buf = g_strdup_printf("[%s]:%s", inet->host, inet->port);
> -        }
> -        break;
> -
> -    case SOCKET_ADDRESS_TYPE_UNIX:
> -        buf = g_strdup(addr->u.q_unix.path);
> -        break;
> -
> -    case SOCKET_ADDRESS_TYPE_FD:
> -        buf = g_strdup(addr->u.fd.str);
> -        break;
> -
> -    case SOCKET_ADDRESS_TYPE_VSOCK:
> -        buf = g_strdup_printf("%s:%s",
> -                              addr->u.vsock.cid,
> -                              addr->u.vsock.port);
> -        break;
> -
> -    default:
> -        abort();
> -    }
> -    return buf;
> -}
>  
>  SocketAddress *socket_address_flatten(SocketAddressLegacy *addr_legacy)
>  {
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Qemu-trivial] [PATCH] util/qemu-sockets: Drop unused helper socket_address_to_string()
       [not found] <20170608031124.8031-1-maozy.fnst@cn.fujitsu.com>
  2017-06-08 13:05 ` [Qemu-trivial] [PATCH] util/qemu-sockets: Drop unused helper socket_address_to_string() Paolo Bonzini
@ 2017-06-27 12:58 ` Michael Tokarev
  1 sibling, 0 replies; 2+ messages in thread
From: Michael Tokarev @ 2017-06-27 12:58 UTC (permalink / raw)
  To: Mao Zhongyi, qemu-devel; +Cc: pbonzini, kraxel, armbru, QEMU Trivial

Applied to -trivial, thanks!

/mjt


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-06-27 12:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20170608031124.8031-1-maozy.fnst@cn.fujitsu.com>
2017-06-08 13:05 ` [Qemu-trivial] [PATCH] util/qemu-sockets: Drop unused helper socket_address_to_string() Paolo Bonzini
2017-06-27 12:58 ` Michael Tokarev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).