pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-hnbgw/+/40174?usp=email )
Change subject: cosmetic: context_map.h: Document parameters of all map_sccp_fsm_event
values
......................................................................
cosmetic: context_map.h: Document parameters of all map_sccp_fsm_event values
Change-Id: I53603ade5157ddbccb49864a2edab09376fe8979
---
M include/osmocom/hnbgw/context_map.h
1 file changed, 12 insertions(+), 7 deletions(-)
Approvals:
osmith: Looks good to me, approved
Jenkins Builder: Verified
laforge: Looks good to me, but someone else must approve
diff --git a/include/osmocom/hnbgw/context_map.h b/include/osmocom/hnbgw/context_map.h
index 7e288d7..f3d9e73 100644
--- a/include/osmocom/hnbgw/context_map.h
+++ b/include/osmocom/hnbgw/context_map.h
@@ -54,13 +54,14 @@
* MAP_SCCP_EV_TX_DATA_REQUEST, MAP_SCCP_EV_RAN_DISC.
*/
enum map_sccp_fsm_event {
- /* Receiving an SCCP CC from CN. */
+ /* Receiving an SCCP CC from CN.
+ * Parameter: struct msgb *ranap_msg, may be NULL or empty. */
MAP_SCCP_EV_RX_CONNECTION_CONFIRM,
/* Receiving some data from CN via SCCP, to forward via RUA to HNB.
- * Parameter: struct msgb *ranap_msg */
+ * Parameter: struct msgb *ranap_msg, may be NULL or empty. */
MAP_SCCP_EV_RX_DATA_INDICATION,
/* RUA has received some data from HNB to forward via SCCP to CN.
- * Parameter: struct msgb *ranap_msg */
+ * Parameter: struct msgb *ranap_msg. */
MAP_SCCP_EV_TX_DATA_REQUEST,
/* 3GPP TS 25.468 9.1.5: The RAN side received a RUA Disconnect.
* - Under normal conditions (cause=Normal) the RUA Disconnect contains a RANAP
Iu-ReleaseComplete.
@@ -75,15 +76,19 @@
* happened under error or normal conditions, as per the above.
*/
MAP_SCCP_EV_RAN_DISC,
- /* The RAN released ungracefully. We will directly disconnect the SCCP connection, too.
*/
+ /* The RAN released ungracefully. We will directly disconnect the SCCP connection, too.
+ * Parameter: no parameter, NULL. */
MAP_SCCP_EV_RAN_LINK_LOST,
- /* Receiving an SCCP RLSD from CN, or libosmo-sigtran tells us about SCCP connection
timeout. All done. */
+ /* Receiving an SCCP RLSD from CN, or libosmo-sigtran tells us about SCCP connection
timeout. All done.
+ * Parameter: struct msgb *ranap_msg, may be NULL or empty. */
MAP_SCCP_EV_RX_RELEASED,
/* The human admin asks to drop the current SCCP connection, by telnet VTY 'apply
sccp' in presence of SCCP
- * config changes. */
+ * config changes.
+ * Parameter: no parameter, NULL. */
MAP_SCCP_EV_USER_ABORT,
/* The CN link can no longer work, for example a RANAP RESET was received from the
cnlink that hosts this
- * context map. */
+ * context map.
+ * Parameter: no parameter, NULL. */
MAP_SCCP_EV_CN_LINK_LOST,
};
--
To view, visit
https://gerrit.osmocom.org/c/osmo-hnbgw/+/40174?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: I53603ade5157ddbccb49864a2edab09376fe8979
Gerrit-Change-Number: 40174
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>