From 9f2a584fb60ed6bc2b06271a1e9c631c311fae82 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 12 Mar 2024 11:31:56 +0100 Subject: [PATCH] iuh: Name stream_cli connection This makes it easier to figure out the conn log lines. Change-Id: I1503b322f8ff053088688b3088a70801d10b3d88 --- src/osmo-hnodeb/iuh.c | 1 + 1 file changed, 1 insertion(+) 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 @@ void hnb_iuh_alloc(struct hnb *hnb) 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);