diff options
author | Harald Welte <laforge@gnumonks.org> | 2018-07-28 23:07:21 +0200 |
---|---|---|
committer | laforge <laforge@osmocom.org> | 2019-11-30 12:39:39 +0000 |
commit | a3e9ef9289350076f124254d1b70285f7d439559 (patch) | |
tree | 20eaf834b871f96571ea5cc667af34de13725fc2 /src/gsm | |
parent | 499510bd521279e406ea3c0126923264341faa03 (diff) |
04.80: Deprecate gsm0480_create_ussd_resp()
In July 2018 in commit Ide240279240322f643e142229eb7829f538c6314 we
introduced the successor gsm0480_gen_ussd_resp_7bit(), which is also
what both libosmogsm-internal code as well as osmo-hlr have been ported
to. For some reason it wasn't marked deprecated back then.
Change-Id: Iff4c91b5b98a73d9a30aa42f6b2a1ebcc8a45343
Diffstat (limited to 'src/gsm')
-rw-r--r-- | src/gsm/gsm0480.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gsm/gsm0480.c b/src/gsm/gsm0480.c index 3ae591a6..1d5cde95 100644 --- a/src/gsm/gsm0480.c +++ b/src/gsm/gsm0480.c @@ -821,6 +821,7 @@ struct msgb *gsm0480_gen_ussd_resp_7bit(uint8_t invoke_id, const char *text) * not only the FACILITY value, but the full L3 message including message header * and FACILITY IE Tag+Length. */ +OSMO_DEPRECATED("Use gsm0480_gen_ussd_resp_7bit() instead") struct msgb *gsm0480_create_ussd_resp(uint8_t invoke_id, uint8_t trans_id, const char *text) { struct msgb *msg; |