summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/common
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-05-05 19:12:20 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2023-05-15 12:05:58 +0200
commit0cbf3afc1585b65f81a91917e7f74314ae2d86d1 (patch)
treeb2cdfbc81bc85ce64a0ca1498488186860cba3f0 /src/host/layer23/include/osmocom/bb/common
parent39b04cf6ef81a4bf8e83143b3fbaf06ce095bc81 (diff)
layer23: modem: pass pco & qos from apn
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/common')
-rw-r--r--src/host/layer23/include/osmocom/bb/common/apn.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/host/layer23/include/osmocom/bb/common/apn.h b/src/host/layer23/include/osmocom/bb/common/apn.h
index c4495301..7378221f 100644
--- a/src/host/layer23/include/osmocom/bb/common/apn.h
+++ b/src/host/layer23/include/osmocom/bb/common/apn.h
@@ -20,6 +20,9 @@
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/select.h>
#include <osmocom/core/tun.h>
+
+#include <osmocom/gprs/sm/sm.h>
+
#include <osmocom/bb/common/apn_fsm.h>
struct osmocom_ms;
@@ -31,6 +34,10 @@ struct osmocom_ms;
struct osmobb_pdp_ctx {
uint8_t nsapi;
uint8_t llc_sapi;
+ uint8_t qos[OSMO_GPRS_SM_QOS_MAXLEN];
+ uint8_t qos_len;
+ uint8_t pco[OSMO_GPRS_SM_PCO_MAXLEN];
+ uint8_t pco_len;
};
struct osmobb_apn {