Send HnbRegisterRequest when HnodeB connects on Iuh

Change-Id: I901fd456221a3bdc3f4f95b7fd3b9484c7830f24
This commit is contained in:
Pau Espin 2021-10-28 18:43:39 +02:00
parent feb5d9a1c7
commit b4cc30ae1d
1 changed files with 4 additions and 1 deletions

View File

@ -98,9 +98,12 @@ static int hnb_iuh_read_cb(struct osmo_stream_cli *conn)
return rc;
}
static int hnb_iuh_connect_cb(struct osmo_stream_cli *cli)
static int hnb_iuh_connect_cb(struct osmo_stream_cli *conn)
{
LOGP(DMAIN, LOGL_NOTICE, "Iuh connected to HNBGW\n");
struct hnb *hnb = osmo_stream_cli_get_data(conn);
hnb_send_register_req(hnb);
return 0;
}