aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-05-18 11:56:50 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-05-21 17:10:49 +0200
commit87597358cfe216a80405c21559ba640eedf44ad2 (patch)
treeb27bc841c789accbb2d92aad60a3e6096cc7d00f /src/tbf.h
parent939904672961fa7e28397e27f942a7d1fff4bbdf (diff)
tbf: Get the TLLI from the MS object
Since the synchronisation of the TBF's concerning the TLLIs has been removed in 'Support new and old TLLI's', gprs_rlcmac_tbf::tlli() can return the old TLLI which is probably different to ms()->tlli() in that case. This can lead to a wrong TLLI being used in BSSGP messages. This commit modifies the TBF's tlli() method to get the current TLLI from the MS object. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/tbf.h')
-rw-r--r--src/tbf.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/tbf.h b/src/tbf.h
index a2f5bf72..a1edff37 100644
--- a/src/tbf.h
+++ b/src/tbf.h
@@ -293,11 +293,6 @@ inline GprsMs *gprs_rlcmac_tbf::ms()
return m_ms;
}
-inline uint32_t gprs_rlcmac_tbf::tlli() const
-{
- return m_tlli;
-}
-
inline bool gprs_rlcmac_tbf::is_tlli_valid() const
{
return m_tlli_valid;