aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gprs/protocol
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-12-08 20:40:44 +0100
committerHarald Welte <laforge@osmocom.org>2020-12-09 22:56:07 +0100
commit4394bb96291fabbdb102afd5d681ad720d75ab94 (patch)
tree29ba1c10511d639cfd5ab269b60dcde561d42c5a /include/osmocom/gprs/protocol
parent4c0e1a1f4cf00577e1aa047a13250e8ee9a290b0 (diff)
bssgp2: Encoding + Decoding functions for BVC and MS flow control
Diffstat (limited to 'include/osmocom/gprs/protocol')
-rw-r--r--include/osmocom/gprs/protocol/gsm_08_18.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/osmocom/gprs/protocol/gsm_08_18.h b/include/osmocom/gprs/protocol/gsm_08_18.h
index 0ce28f55..466b0c51 100644
--- a/include/osmocom/gprs/protocol/gsm_08_18.h
+++ b/include/osmocom/gprs/protocol/gsm_08_18.h
@@ -341,3 +341,11 @@ enum gprs_bssgp_cause {
#define BSSGP_XFEAT_DCN 0x20 /* Dedicated CN */
#define BSSGP_XFEAT_eDRX 0x40 /* eDRX */
#define BSSGP_XFEAT_MSAD 0x80 /* MS-assisted Dedicated CN selection */
+
+/* Flow Control Granularity (Section 11.3.102) */
+enum bssgp_fc_granularity {
+ BSSGP_FC_GRAN_100 = 0,
+ BSSGP_FC_GRAN_1000 = 1,
+ BSSGP_FC_GRAN_10000 = 2,
+ BSSGP_FC_GRAN_100000 = 3,
+};