aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2014-08-20 23:46:40 +0200
committerHarald Welte <laforge@gnumonks.org>2014-08-20 23:47:56 +0200
commit4a88a49c0313d2ddc74aa2de1dca28118ee09a27 (patch)
treed8bcbc58cef474ec273831e1160b9d21b3f5fdc2 /openbsc/src/osmo-bsc
parenteb623019382fdbff36fb8a72052732e225aef67e (diff)
adopt recent IPA related symbol rename
... which happened during recent migration of IPA functionality from libosmo-abis into libosmocore.
Diffstat (limited to 'openbsc/src/osmo-bsc')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_msc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_msc.c b/openbsc/src/osmo-bsc/osmo_bsc_msc.c
index 0acc29027..3de5c448f 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_msc.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_msc.c
@@ -171,7 +171,7 @@ static int mgcp_create_port(struct osmo_msc_data *data)
*/
int msc_queue_write(struct bsc_msc_connection *conn, struct msgb *msg, int proto)
{
- ipaccess_prepend_header(msg, proto);
+ ipa_prepend_header(msg, proto);
if (osmo_wqueue_enqueue(&conn->write_queue, msg) != 0) {
LOGP(DMSC, LOGL_FATAL, "Failed to queue IPA/%d\n", proto);
msgb_free(msg);
@@ -274,7 +274,7 @@ static int ipaccess_a_fd_cb(struct osmo_fd *bfd)
/* initialize the networking. This includes sending a GSM08.08 message */
msg->cb[0] = (unsigned long) data;
if (hh->proto == IPAC_PROTO_IPACCESS) {
- ipaccess_rcvmsg_base(msg, bfd);
+ ipa_ccm_rcvmsg_base(msg, bfd);
if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
initialize_if_needed(data->msc_con);
else if (msg->l2h[0] == IPAC_MSGT_ID_GET) {
@@ -401,7 +401,7 @@ static void send_lacs(struct gsm_network *net, struct bsc_msc_connection *conn)
}
lac->nr_extra_lacs = lacs - 1;
- ipaccess_prepend_header_ext(msg, IPAC_PROTO_EXT_LAC);
+ ipa_prepend_header_ext(msg, IPAC_PROTO_EXT_LAC);
msc_queue_write(conn, msg, IPAC_PROTO_OSMO);
}