pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-gprs/+/31074 )
Change subject: llc: Fix spec references pointing to SNDCP instead of LLC ......................................................................
llc: Fix spec references pointing to SNDCP instead of LLC
Change-Id: Ibe20dfcce937deb83fda2b114133173e47682cf7 --- M include/osmocom/gprs/llc/llc_prim.h 1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-gprs refs/changes/74/31074/1
diff --git a/include/osmocom/gprs/llc/llc_prim.h b/include/osmocom/gprs/llc/llc_prim.h index 22ee7b7..378a4a6 100644 --- a/include/osmocom/gprs/llc/llc_prim.h +++ b/include/osmocom/gprs/llc/llc_prim.h @@ -27,7 +27,7 @@ /* TS 04.64 Section 7.1.2 Table 7: LLC layer primitives (GMM/SNDCP/SMS/TOM) */ /* TS 04.65 Section 5.1.2 Table 2: Service primitives used by SNDCP */
-/* TS 04.65 Section 7.2.1 GMM - LLME primitives */ +/* TS 04.64 Section 7.2.1 GMM - LLME primitives */ enum osmo_gprs_llc_llgmm_prim_type { OSMO_GPRS_LLC_LLGMM_ASSIGN, /* Req: TLLI old, TLLI new, Kc, CiphAlg */ OSMO_GPRS_LLC_LLGMM_RESET, /* Req/Cnf: TLLI */ @@ -47,7 +47,7 @@ return get_value_string(osmo_gprs_llc_llgmm_prim_type_names, val); }
-/* TS 04.65 Section 7.2.2 "Layer 3 - LLE primitives" */ +/* TS 04.64 Section 7.2.2 "Layer 3 - LLE primitives" */ enum osmo_gprs_llc_ll_prim_type { OSMO_GPRS_LLC_LL_RESET, /* Ind: TLLI */ OSMO_GPRS_LLC_LL_ESTABLISH, /* Req/Ind/Rsp/Cnf: TLLI, XID Req/Neg, N201-I, N201-U */ @@ -64,7 +64,7 @@ return get_value_string(osmo_gprs_llc_ll_prim_type_names, val); }
-/* TS 04.65 Section 7.2.3 "LLE - RLC/MAC primitives" (MS side) */ +/* TS 04.64 Section 7.2.3 "LLE - RLC/MAC primitives" (MS side) */ enum osmo_gprs_llc_grr_prim_type { OSMO_GPRS_LLC_GRR_DATA, /* Req/Ind: TLLI, LL-PDU, SAPI, Cause, QoS, Radio Prio */ OSMO_GPRS_LLC_GRR_UNITDATA, /* Req/Ind: TLLI, LL-PDU, SAPI, QoS, Radio Prio */ @@ -76,7 +76,7 @@ return get_value_string(osmo_gprs_llc_grr_prim_type_names, val); }
-/* TS 04.65 Section 7.2.4 "LLE - BSSGP primitives" (SGSN side) */ +/* TS 04.64 Section 7.2.4 "LLE - BSSGP primitives" (SGSN side) */ enum osmo_gprs_llc_bssgp_prim_type { OSMO_GPRS_LLC_BSSGP_DL_UNITDATA, /* Req: TLLI, LL-PDU, Cell Id, QoS, RLC Confirm, SAPI, ... */ OSMO_GPRS_LLC_BSSGP_UL_UNITDATA, /* Ind: TLLI, LL-PDU, Cell Id, edirect attempt, IMSI, V(U) for redirect, ... */