blob: 969eabad28c872bf113e9f9aa55586c9ea6c831f [file] [log] [blame]
Vadim Yanitskiy76ef72d2018-11-07 05:08:18 +07001#pragma once
2
3#include <stdint.h>
4
5struct osmo_gsup_message;
6struct vlr_subscr;
7struct gsm_trans;
8struct msgb;
9
10int gsm411_gsup_mo_ready_for_sm_req(struct gsm_trans *trans, uint8_t sm_rp_mr);
11int gsm411_gsup_mo_fwd_sm_req(struct gsm_trans *trans, struct msgb *msg,
12 uint8_t sm_rp_mr, uint8_t *sm_rp_da, uint8_t sm_rp_da_len);
13int gsm411_gsup_mo_handler(struct vlr_subscr *vsub,
14 struct osmo_gsup_message *gsup_msg);
Vadim Yanitskiy82cc8a52018-11-15 01:05:53 +070015
16int gsm411_gsup_mt_fwd_sm_res(struct gsm_trans *trans, uint8_t sm_rp_mr);
17int gsm411_gsup_mt_fwd_sm_err(struct gsm_trans *trans,
18 uint8_t sm_rp_mr, uint8_t cause);
19int gsm411_gsup_mt_handler(struct vlr_subscr *vsub,
20 struct osmo_gsup_message *gsup_msg);