From 858f038c1ce1937cc4b295d688b40534b169b01b Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 2 Nov 2021 14:13:47 +0100 Subject: [PATCH] tbf_ul: Document context where tbf_alloc_ul_ccch() is used It can be seen that this function properly passes single=true to tbf_alloc_ul_tbf(). Change-Id: Id83bfd78c88fa9e4fa98268cc726298c276e6f20 --- src/tbf_ul.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp index 74b2636b..d6936e18 100644 --- a/src/tbf_ul.cpp +++ b/src/tbf_ul.cpp @@ -168,7 +168,8 @@ gprs_rlcmac_ul_tbf *tbf_alloc_ul_pacch(struct gprs_rlcmac_bts *bts, GprsMs *ms, return tbf; } -/* Alloc a UL TBF to be assigned over CCCH */ +/* Alloc a UL TBF to be assigned over CCCH. Used by request of a "One phase + * packet access", where MS requested only 1 PDCH TS (TS 44.018 Table 9.1.8.1). */ struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms) { struct gprs_rlcmac_ul_tbf *tbf;