aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/iu.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-06-17 00:06:42 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-07-21 18:32:03 +0200
commitb8b85a1b2ef64f6a0655ce0069686d53b509b66b (patch)
tree5a30e32a8b94f0cbd98e31d58e2412f555614cc0 /include/openbsc/iu.h
parent53edff3c70cb2954f80b2d4f2e6e3f9a14e8609e (diff)
Add libvlr implementation
Original libvlr code is by Harald Welte <laforge@gnumonks.org>, polished and tweaked by Neels Hofmeyr <nhofmeyr@sysmocom.de>. This is a long series of trial-and-error development collapsed in one patch. This may be split in smaller commits if reviewers prefer that. If we can keep it as one, we have saved ourselves the additional separation work. Related: OS#1592 Change-Id: Ie303c98f8c18e40c87c1b68474b35de332033622
Diffstat (limited to 'include/openbsc/iu.h')
-rw-r--r--include/openbsc/iu.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/openbsc/iu.h b/include/openbsc/iu.h
index f973ac1ba..8cf830ef0 100644
--- a/include/openbsc/iu.h
+++ b/include/openbsc/iu.h
@@ -22,9 +22,6 @@ enum iu_event_type {
IU_EVENT_SECURITY_MODE_COMPLETE,
IU_EVENT_IU_RELEASE, /* An actual Iu Release message was received */
IU_EVENT_LINK_INVALIDATED, /* A SUA link was lost or closed down */
- /* FIXME: maybe IU_EVENT_IU_RELEASE and IU_EVENT_LINK_INVALIDATED
- * should be combined to one generic event that simply means the
- * ue_conn_ctx should no longer be used, for whatever reason. */
};
extern const struct value_string iu_event_type_names[];
@@ -35,7 +32,6 @@ static inline const char *iu_event_type_str(enum iu_event_type e)
/* Implementations of iu_recv_cb_t shall find the ue_conn_ctx in msg->dst. */
typedef int (* iu_recv_cb_t )(struct msgb *msg, struct gprs_ra_id *ra_id,
- /* TODO "gprs_" in generic CS+PS domain ^ */
uint16_t *sai);
typedef int (* iu_event_cb_t )(struct ue_conn_ctx *ue_ctx,