aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbsc/include/openbsc/msc_ifaces.h1
-rw-r--r--openbsc/src/libmgcp/mgcpgw_client.c3
-rw-r--r--openbsc/src/libmsc/msc_ifaces.c18
-rw-r--r--openbsc/src/osmo-msc/msc_main.c4
4 files changed, 25 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/msc_ifaces.h b/openbsc/include/openbsc/msc_ifaces.h
index e278f9305..d9f681f2d 100644
--- a/openbsc/include/openbsc/msc_ifaces.h
+++ b/openbsc/include/openbsc/msc_ifaces.h
@@ -56,3 +56,4 @@ int msc_tx_common_id(struct gsm_subscriber_connection *conn);
int msc_call_assignment(struct gsm_trans *trans);
int msc_call_bridge(struct gsm_trans *trans1, struct gsm_trans *trans2);
void msc_call_release(struct gsm_trans *trans);
+void msc_call_release_all(struct mgcpgw_client *mgcp);
diff --git a/openbsc/src/libmgcp/mgcpgw_client.c b/openbsc/src/libmgcp/mgcpgw_client.c
index 0c5b5caf7..4ccff844b 100644
--- a/openbsc/src/libmgcp/mgcpgw_client.c
+++ b/openbsc/src/libmgcp/mgcpgw_client.c
@@ -402,7 +402,8 @@ int mgcpgw_client_connect(struct mgcpgw_client *mgcp)
mgcp->remote_addr = htonl(addr.sin_addr.s_addr);
- osmo_wqueue_init(wq, 10);
+ osmo_wqueue_init(wq, (mgcp->actual.last_endpoint - mgcp->actual.first_endpoint) + 10);
+
wq->bfd.when = BSC_FD_READ;
wq->bfd.data = mgcp;
wq->read_cb = mgcp_do_read;
diff --git a/openbsc/src/libmsc/msc_ifaces.c b/openbsc/src/libmsc/msc_ifaces.c
index 9533ddecd..43959c13f 100644
--- a/openbsc/src/libmsc/msc_ifaces.c
+++ b/openbsc/src/libmsc/msc_ifaces.c
@@ -345,3 +345,21 @@ void msc_call_release(struct gsm_trans *trans)
/* Release endpoint id */
mgcpgw_client_release_endpoint(conn->iu.mgcp_rtp_endpoint, mgcp);
}
+
+void msc_call_release_all(struct mgcpgw_client *mgcp)
+{
+ struct msgb *msg;
+ unsigned int i;
+
+ uint16_t first_endpoint = mgcp->actual.first_endpoint;
+ uint16_t last_endpoint = mgcp->actual.last_endpoint;
+
+ for (i = first_endpoint; i < last_endpoint; i++) {
+ msg = mgcp_msg_dlcx(mgcp, i);
+ if (mgcpgw_client_tx(mgcp, msg, NULL, NULL))
+ LOGP(DMGCP, LOGL_ERROR,
+ "Failed to send DLCX message for endpoint %u\n", i);
+
+ mgcpgw_client_release_endpoint(i, mgcp);
+ }
+}
diff --git a/openbsc/src/osmo-msc/msc_main.c b/openbsc/src/osmo-msc/msc_main.c
index 83d8fa4aa..4319b84e2 100644
--- a/openbsc/src/osmo-msc/msc_main.c
+++ b/openbsc/src/osmo-msc/msc_main.c
@@ -496,6 +496,10 @@ TODO: we probably want some of the _net_ ctrl commands from bsc_base_ctrl_cmds_i
return 7;
}
+ /* Make sure all mgcp endpoints are cleared */
+ msc_call_release_all(msc_network->mgcpgw.client);
+
+
/* Set up A-Interface */
/* TODO: implement A-Interface and remove above legacy stuff. */