aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoding.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-26 17:38:37 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-30 21:24:11 +0100
commitfcbc70211208323b22ab9805cdf19769cce72d23 (patch)
tree4d3b54833789ff6b60b93e657dd9c9097386f7b8 /src/decoding.h
parentd11290b90bb5f32a7d57affbe11bdadb24e42db0 (diff)
pdch: Move the giant switch/case of gprs_rlcmac_rcv_control_block
Move the dispatch into the PDCH. This needs to be split up further into understandable blocks.
Diffstat (limited to 'src/decoding.h')
-rw-r--r--src/decoding.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decoding.h b/src/decoding.h
index 47983a2a..0590eb40 100644
--- a/src/decoding.h
+++ b/src/decoding.h
@@ -19,10 +19,13 @@
*/
#pragma once
+#include <gsm_rlcmac.h>
+
#include <stdint.h>
class Decoding {
public:
static int tlli_from_ul_data(const uint8_t *data, uint8_t len,
uint32_t *tlli);
+ static uint8_t get_ms_class_by_capability(MS_Radio_Access_capability_t *cap);
};