diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/sgsn/gprs_llc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/osmocom/sgsn/gprs_llc.h b/include/osmocom/sgsn/gprs_llc.h index 711bcd6f..5b122480 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; |