aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-04-03 16:46:18 +0200
committerHarald Welte <laforge@gnumonks.org>2017-04-03 18:03:47 +0200
commit15bb28b462fdfcf4d523f279d780bba83f8918bd (patch)
treeeece9dbc2ef67cc9af7dff4ab600c9b14743f49f
parent2b8d602773cbfd982396dea5ef33e45d2f00f6b5 (diff)
sccp_sap: Add support for N-NOTICE.indication
-rw-r--r--include/osmocom/sigtran/sccp_sap.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/osmocom/sigtran/sccp_sap.h b/include/osmocom/sigtran/sccp_sap.h
index ec021c7..139567e 100644
--- a/include/osmocom/sigtran/sccp_sap.h
+++ b/include/osmocom/sigtran/sccp_sap.h
@@ -198,6 +198,15 @@ struct osmo_scu_unitdata_param {
/* user data */
};
+/* OSMO_SCU_PRIM_N_NOTICE */
+struct osmo_scu_notice_param {
+ struct osmo_sccp_addr called_addr;
+ struct osmo_sccp_addr calling_addr;
+ uint32_t cause;
+ uint32_t importance;
+ /* user data */
+};
+
struct osmo_scu_prim {
struct osmo_prim_hdr oph;
union {
@@ -206,6 +215,7 @@ struct osmo_scu_prim {
struct osmo_scu_disconn_param disconnect;
struct osmo_scu_reset_param reset;
struct osmo_scu_unitdata_param unitdata;
+ struct osmo_scu_notice_param notice;
} u;
};