blob: 29b800bad3f50bb458133d2f455b2c6b14d5f936 [file] [log] [blame]
Vadim Yanitskiy6e19d1b2018-01-10 18:24:45 +06001#pragma once
Harald Welte6eafe912009-10-16 08:32:58 +02002
Vadim Yanitskiy0622ef52018-08-03 04:39:04 +07003#include <stdint.h>
Mike Haben2449b372009-10-26 20:36:34 +01004
Neels Hofmeyrc036b792018-11-29 22:37:51 +01005struct ran_conn;
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08006
Neels Hofmeyrc036b792018-11-29 22:37:51 +01007int msc_send_ussd_reject(struct ran_conn *conn,
Vadim Yanitskiy5df4e4d2018-06-12 08:03:53 +07008 uint8_t transaction_id, int invoke_id,
9 uint8_t problem_tag, uint8_t problem_code);
Harald Welte6eafe912009-10-16 08:32:58 +020010
Neels Hofmeyrc036b792018-11-29 22:37:51 +010011int msc_send_ussd_notify(struct ran_conn *conn, int level,
Neels Hofmeyr43273c62016-05-10 12:50:31 +020012 const char *text);
Neels Hofmeyrc036b792018-11-29 22:37:51 +010013int msc_send_ussd_release_complete(struct ran_conn *conn);