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_storage.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/gprs_ms_storage.h') diff --git a/src/gprs_ms_storage.h b/src/gprs_ms_storage.h index fff9638b..35526025 100644 --- a/src/gprs_ms_storage.h +++ b/src/gprs_ms_storage.h @@ -26,9 +26,11 @@ #include #include +struct BTS; + class GprsMsStorage : public GprsMs::Callback { public: - GprsMsStorage(); + GprsMsStorage(BTS *bts); ~GprsMsStorage(); virtual void ms_idle(class GprsMs *); @@ -38,5 +40,6 @@ public: GprsMs *create_ms(uint32_t tlli, enum gprs_rlcmac_tbf_direction dir); private: + BTS *m_bts; LListHead m_list; }; -- cgit v1.2.3