From 17214bb06de4a1d8b626dab0f695017b0c74b358 Mon Sep 17 00:00:00 2001 From: Jacob Erlbeck Date: Tue, 2 Jun 2015 14:06:12 +0200 Subject: ms: Add back pointer to BTS Since more functionality will be moved to the GprsMs class, a pointer to the current BTS object is added to allow access to configuration data and other methods. Sponsored-by: On-Waves ehf --- src/gprs_ms.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/gprs_ms.h') diff --git a/src/gprs_ms.h b/src/gprs_ms.h index 8d292f1e..7c71bd14 100644 --- a/src/gprs_ms.h +++ b/src/gprs_ms.h @@ -34,6 +34,8 @@ extern "C" { #include #include +struct BTS; + class GprsMs { public: struct Callback { @@ -50,7 +52,7 @@ public: GprsMs * const m_ms; }; - GprsMs(uint32_t tlli); + GprsMs(BTS *bts, uint32_t tlli); ~GprsMs(); void set_callback(Callback *cb) {m_cb = cb;} @@ -100,6 +102,7 @@ protected: void stop_timer(); private: + BTS *m_bts; Callback * m_cb; gprs_rlcmac_ul_tbf *m_ul_tbf; gprs_rlcmac_dl_tbf *m_dl_tbf; -- cgit v1.2.3