aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-08-03 11:21:29 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-08-03 11:52:17 +0200
commit79f1592ce8119c43aec7aeda467147cdaa3e0ef8 (patch)
tree97394951da17cf98dd773107d60b3cf7b4276c52
parent64bit: Fix compiler warnings in regard to 64bit (diff)
downloadOpenBSC-79f1592ce8119c43aec7aeda467147cdaa3e0ef8.tar.xz
OpenBSC-79f1592ce8119c43aec7aeda467147cdaa3e0ef8.zip
paging: Move the silent_call code to use the subscriber request
Coordinate with the normal subscriber channel requests instead of going to page ourselves. This might lead to getting a channel that is of a different type though.
-rw-r--r--openbsc/src/libmsc/silent_call.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/openbsc/src/libmsc/silent_call.c b/openbsc/src/libmsc/silent_call.c
index 010c2b4d2..e9ece1835 100644
--- a/openbsc/src/libmsc/silent_call.c
+++ b/openbsc/src/libmsc/silent_call.c
@@ -118,11 +118,10 @@ int silent_call_reroute(struct gsm_subscriber_connection *conn, struct msgb *msg
/* initiate a silent call with a given subscriber */
int gsm_silent_call_start(struct gsm_subscriber *subscr, void *data, int type)
{
- int rc;
+ struct subscr_request *req;
- rc = paging_request(subscr->group->net, subscr, type,
- paging_cb_silent, data);
- return rc;
+ req = subscr_request_channel(subscr, type, paging_cb_silent, data);
+ return req != NULL;
}
/* end a silent call with a given subscriber */