aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/sgsn/gprs_llc.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-08-12 16:23:04 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-08-12 16:23:04 +0200
commit39aa9ee6dff9bc53441e394a45c30c4de8a53cb1 (patch)
treecbce9ec4dc386c436990c5ee1348d7abf3990a05 /include/osmocom/sgsn/gprs_llc.h
parentdfd7c24e16907b18b65a8e707af898a5591c6592 (diff)
gprs_llc.h: Improve documentation of some structs
Diffstat (limited to 'include/osmocom/sgsn/gprs_llc.h')
-rw-r--r--include/osmocom/sgsn/gprs_llc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/osmocom/sgsn/gprs_llc.h b/include/osmocom/sgsn/gprs_llc.h
index 711bcd6fd..5b1224804 100644
--- a/include/osmocom/sgsn/gprs_llc.h
+++ b/include/osmocom/sgsn/gprs_llc.h
@@ -110,13 +110,13 @@ struct gprs_llc_params {
uint16_t kU;
};
-/* Section 4.7.1: Logical Link Entity: One per DLCI (TLLI + SAPI) */
+/* 3GPP TS 44.064 § 4.7.1: Logical Link Entity: One per DLCI (TLLI + SAPI) */
struct gprs_llc_lle {
struct llist_head list;
uint32_t sapi;
- struct gprs_llc_llme *llme;
+ struct gprs_llc_llme *llme; /* backpointer to the Logical Link Management Entity */
enum gprs_llc_lle_state state;
@@ -156,6 +156,7 @@ struct gprs_llc_lle {
#define NUM_SAPIS 16
+/* 3GPP TS 44.064 § 4.7.3: Logical Link Management Entity: One per TLLI */
struct gprs_llc_llme {
struct llist_head list;