stream_cli: osmo_stream_cli_get_sockname() now returns the full set of addresses

This is used by API callers, and internally to log
connected/disconnected events.

Related: SYS#5581
Change-Id: I249ee7cad824cf971faabe06d10de2426c1b0c8b
This commit is contained in:
Pau Espin 2023-12-08 18:24:39 +01:00
parent a7650de412
commit d4407a7f32
2 changed files with 5 additions and 3 deletions

View File

@ -7,4 +7,5 @@
# If any interfaces have been added since the last public release: c:r:a + 1.
# If any interfaces have been removed or changed since the last public release: c:r:0.
#library what description / commit summary line
libosmocore >1.9.0 working osmo_sock_init2_multiaddr2() without setting flag OSMO_SOCK_F_BIND
libosmocore >1.9.0 working osmo_sock_init2_multiaddr2() without setting flag OSMO_SOCK_F_BIND
libosmocore >1.9.0 use osmo_sock_multiaddr_get_name_buf()

View File

@ -685,9 +685,10 @@ void *osmo_stream_cli_get_data(struct osmo_stream_cli *cli)
* \returns Socket description or NULL in case of error */
char *osmo_stream_cli_get_sockname(const struct osmo_stream_cli *cli)
{
static char buf[OSMO_SOCK_NAME_MAXLEN];
static char buf[OSMO_STREAM_MAX_ADDRS * OSMO_SOCK_NAME_MAXLEN];
osmo_sock_get_name_buf(buf, OSMO_SOCK_NAME_MAXLEN, osmo_stream_cli_get_fd(cli));
osmo_sock_multiaddr_get_name_buf(buf, sizeof(buf),
osmo_stream_cli_get_fd(cli), cli->proto);
return buf;
}