3#include <osmocom/core/defs.h>
4#include <osmocom/core/msgb.h>
5#include <osmocom/gsm/protocol/gsm_04_08.h>
6#include <osmocom/gsm/protocol/gsm_04_80.h>
8#define MAX_LEN_USSD_STRING 31
12 char text[MAX_LEN_USSD_STRING + 1];
13 uint8_t transaction_id;
18int gsm0480_decode_ussd_request(
const struct gsm48_hdr *hdr, uint16_t len,
19 struct ussd_request *request) OSMO_DEPRECATED(
"Use gsm0480_decode_ss_request() instead");
24 uint8_t ussd_text[MAX_LEN_USSD_STRING + 1];
25 uint8_t transaction_id;
29int gsm0480_decode_ss_request(
const struct gsm48_hdr *hdr, uint16_t len,
32struct msgb *gsm0480_create_ussd_resp(uint8_t invoke_id, uint8_t trans_id,
const char *text);
33struct msgb *gsm0480_create_unstructuredSS_Notify(
int alertPattern,
const char *text);
34struct msgb *gsm0480_create_notifySS(
const char *text);
35struct msgb *gsm0480_create_ussd_notify(
int level,
const char *text);
36struct msgb *gsm0480_create_ussd_release_complete(
void);
38int gsm0480_wrap_invoke(
struct msgb *msg,
int op,
int link_id);
39int gsm0480_wrap_facility(
struct msgb *msg);
41struct gsm48_hdr *gsm0480_l3hdr_push(
struct msgb *msg, uint8_t proto_discr,
Definition gsm_04_08.h:598