gprs_bssgp: use gprs_ns2_sns_add_bind() to allow the NSE to use the binds for IP-SNS configuration

The gprs_ns2 now requires to specify every bind which should be used by the NSE for IP-SNS

Related: SYS#5354
Depends: I9ab8092bf286e7d90e92f5702a5404425e959c84 (libosmocore)
Change-Id: I35c987224ce098f7ee9f189ce0fce9e68ad3feac
This commit is contained in:
Alexander Couzens 2021-02-15 05:53:12 +01:00 committed by lynxis lazus
parent 9345eb34d3
commit 151bc5b0d3
1 changed files with 8 additions and 0 deletions

View File

@ -1023,6 +1023,14 @@ static int ns_configure_nse(struct gprs_rlcmac_bts *bts,
LOGP(DBSSGP, LOGL_ERROR, "Failed to bind to %s\n", osmo_sockaddr_to_str(&local[i]));
continue;
}
if (the_pcu->vty.ns_dialect == GPRS_NS2_DIALECT_SNS) {
rc = gprs_ns2_sns_add_bind(bts->nse, bind[i]);
if (rc < 0) {
LOGP(DBSSGP, LOGL_ERROR, "Failed to add bind %s to the NSE for IP-SNS\n", osmo_sockaddr_to_str(&local[i]));
continue;
}
}
}
binds |= 1 << i;