aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf_ul.cpp
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-10-23 21:11:41 +0200
committerlaforge <laforge@osmocom.org>2020-10-24 19:49:43 +0000
commit9767e44fd404fa74a425a3b1a803a466a74e282c (patch)
tree592ea3e95b4f9ae8c0a95c24904878c6329c3bee /src/tbf_ul.cpp
parent1136fdb56374db00695e18015ce1484b4a420bf8 (diff)
Move gprs_rlcmac_ul_tbf::window to correct file
It wasn't move when all the UL specific code was moved to a separate file. Change-Id: I6f8c2d568ffdea3826ec1e11358d24eea6c9335b
Diffstat (limited to 'src/tbf_ul.cpp')
-rw-r--r--src/tbf_ul.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp
index 489fc871..39e4e955 100644
--- a/src/tbf_ul.cpp
+++ b/src/tbf_ul.cpp
@@ -614,3 +614,8 @@ void gprs_rlcmac_ul_tbf::set_window_size()
ws, b->ws_base, pcu_bitcount(ul_slots()), b->ws_pdch);
m_window.set_ws(ws);
}
+
+gprs_rlc_ul_window *gprs_rlcmac_ul_tbf::window()
+{
+ return &m_window;
+}