aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-04-09 19:19:33 +0200
committerHarald Welte <laforge@gnumonks.org>2018-04-09 19:19:33 +0200
commit39b5548808a7cae88ec525b8841ceff46e6cea62 (patch)
treed70feeef2344ffd4c72bcbd9b9e2a4b98c1571f5 /include
parent0e2fa5dcb55f77f282f926570b6da0459bd3971c (diff)
Permit any Sender MSISDN when sending SMS from VTY
In the old days, OsmoNITB couldn't process any SMS that wasn't between two subscribers on the same NITB. We've long re-worked the internals in order to process SMS with arbitrary sender MSISDN (e.g. from SMPP). However, the VTY command "subscriber ... sms" was never updated, it seems. Change-Id: I62b17e0a67989484415f0df2c8cb4ff1f94dbf2b Closes: OS#3151
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/gsm_04_11.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/msc/gsm_04_11.h b/include/osmocom/msc/gsm_04_11.h
index 3305e3e61..e3ff4baaf 100644
--- a/include/osmocom/msc/gsm_04_11.h
+++ b/include/osmocom/msc/gsm_04_11.h
@@ -34,7 +34,7 @@ int gsm0411_rcv_sms(struct gsm_subscriber_connection *conn, struct msgb *msg);
struct gsm_sms *sms_alloc(void);
void sms_free(struct gsm_sms *sms);
struct gsm_sms *sms_from_text(struct vlr_subscr *receiver,
- struct vlr_subscr *sender,
+ const char *sender_msisdn,
int dcs, const char *text);
void _gsm411_sms_trans_free(struct gsm_trans *trans);