summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/common
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-01-23 22:02:54 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-01-24 23:41:56 +0700
commit3c54d77b12e9f9446fcfecbe9e3821ca2506dd77 (patch)
treed3060f009bad3e0ab32d9db81c35229040b4938a /src/host/layer23/include/osmocom/bb/common
parent8ebaeca991ab96badd69ff0faca9d5449d7f6416 (diff)
mobile: VTY: use 'enum gsm48_bcap_transp' from libosmogsm
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/common')
-rw-r--r--src/host/layer23/include/osmocom/bb/common/settings.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/host/layer23/include/osmocom/bb/common/settings.h b/src/host/layer23/include/osmocom/bb/common/settings.h
index 38736112..ecebae86 100644
--- a/src/host/layer23/include/osmocom/bb/common/settings.h
+++ b/src/host/layer23/include/osmocom/bb/common/settings.h
@@ -6,6 +6,7 @@
#include <osmocom/core/utils.h>
#include <osmocom/core/linuxlist.h>
#include <osmocom/gsm/protocol/gsm_23_003.h>
+#include <osmocom/gsm/protocol/gsm_04_08.h>
#include <osmocom/gsm/gsm23003.h>
#include <osmocom/gsm/gsm48.h>
@@ -130,19 +131,11 @@ enum data_call_rate {
DATA_CALL_RATE_V110_14400,
};
-/* Connection Element (transparency) */
-enum data_call_ce {
- DATA_CALL_CE_TRANSP,
- DATA_CALL_CE_TRANSP_PREF,
- DATA_CALL_CE_NON_TRANSP,
- DATA_CALL_CE_NON_TRANSP_PREF,
-};
-
/* Data (CSD) call parameters */
struct data_call_params {
- enum data_call_type type;
- enum data_call_rate rate;
- enum data_call_ce ce;
+ enum data_call_type type;
+ enum data_call_rate rate;
+ enum gsm48_bcap_transp transp;
};
struct gsm_settings {