chardev: use remoteAddr if the chardev is client
authorHaoqian He <haoqian.he@smartx.com>
Tue, 25 Feb 2025 10:45:26 +0000 (18:45 +0800)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Wed, 5 Mar 2025 05:38:09 +0000 (09:38 +0400)
commit46f83c898a6658921fed57f98af6d505ab78a6e4
tree44f385ae2cb9b000a3c0ce1d8fcacd9825fa23fc
parenta97ef3624437c5a5fbc8bd45e2a206d10ca840be
chardev: use remoteAddr if the chardev is client

If the chardev is client, the socket file path in localAddr may be NULL.
This is because the socket path comes from getsockname(), according
to man page, getsockname() returns the current address bound by the
socket sockfd. If the chardev is client, it's socket is unbound sockfd.

Therefore, when computing the client chardev socket file path, using
remoteAddr is more appropriate.

Signed-off-by: Haoqian He <haoqian.he@smartx.com>
Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-ID: <20250225104526.2924175-1-haoqian.he@smartx.com>
chardev/char-socket.c