aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2023-06-30 13:35:19 +0200
committerDaniel Willmann <dwillmann@sysmocom.de>2023-06-30 13:35:19 +0200
commit4b4298965f1955edff5a244e487607fcc33b9b23 (patch)
treeab3dfe095fdc516846e195f94e1b9c630904063f
parent42309e34ab7172376b392152a27bf0aee683136a (diff)
stream: Notify stream_cli on connect()
-rw-r--r--src/stream.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stream.c b/src/stream.c
index f007cc4..8de6cb8 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -1039,6 +1039,7 @@ int osmo_stream_cli_open(struct osmo_stream_cli *cli)
if (osmo_iofd_register(cli->iofd, fd) < 0)
goto error_close_socket;
+ osmo_iofd_notify_connected(cli->iofd);
break;
default:
OSMO_ASSERT(false);