pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnodeb/+/36236?usp=email )
Change subject: iuh: Name stream_cli connection ......................................................................
iuh: Name stream_cli connection
This makes it easier to figure out the conn log lines.
Change-Id: I1503b322f8ff053088688b3088a70801d10b3d88 --- M src/osmo-hnodeb/iuh.c 1 file changed, 12 insertions(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve laforge: Looks good to me, but someone else must approve Jenkins Builder: Verified osmith: Looks good to me, approved
diff --git a/src/osmo-hnodeb/iuh.c b/src/osmo-hnodeb/iuh.c index 79df371..f1efb0d 100644 --- a/src/osmo-hnodeb/iuh.c +++ b/src/osmo-hnodeb/iuh.c @@ -180,6 +180,7 @@ cli = osmo_stream_cli_create(hnb); OSMO_ASSERT(cli); hnb->iuh.client = cli; + osmo_stream_cli_set_name(cli, "Iuh"); osmo_stream_cli_set_nodelay(cli, true); osmo_stream_cli_set_proto(cli, IPPROTO_SCTP); osmo_stream_cli_set_reconnect_timeout(cli, 5);