aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf_dl.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-05-26 13:17:01 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-07-01 13:09:20 +0200
commitdeed90dd0030e6ea32ad4d74386cd91fc2f67436 (patch)
treecc995c7d33fc54bde068ac19c5e092f9780f09b2 /src/tbf_dl.h
parent4f67a9bf4610c9e948f0d81f3b039f36675180a3 (diff)
WIP: Support ANR procedures on MS with active TBFpespin/anrnext
TODO: * General clean up * Find out and fix why MS not resetting Neighbour List to BA(GPRS) when empty NC_Frequency_List is sent in Packet Measurement Order. * Fix MS most of the time not sending Neighbour report for cells not present in SI2, probably due to waiting not enough time (increasing NC_REPORTING_PERIOD_T may help, but then problem in previous point above may show up more). Also maybe waiting for several reports before continuing may also help. * Configurable/dynamic chunk list size currently hardcoded to 5. Improvements/optimizations: * Use FREQUENCY_DIFF in Add_Frequency for NC_Frequency_List to make it smaller and hence require less PAcketMeasurementOrder messages. * Support Enchanced Packet Report message (need to signal support for it too). Related: SYS#5303 Change-Id: I051d4fa90fe4ccc44ea691f8a3a487e97868e52c
Diffstat (limited to 'src/tbf_dl.h')
-rw-r--r--src/tbf_dl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tbf_dl.h b/src/tbf_dl.h
index 58d863b3..e317f515 100644
--- a/src/tbf_dl.h
+++ b/src/tbf_dl.h
@@ -156,6 +156,12 @@ int dl_tbf_handle(struct gprs_rlcmac_bts *bts,
const char *imsi, const uint8_t ms_class,
const uint8_t egprs_ms_class, const uint16_t delay_csec,
const uint8_t *data, const uint16_t len);
+/* Schedule new Dl TBF Assignment */
+int tbf_new_dl_assignment(struct gprs_rlcmac_bts *bts, struct GprsMs *ms,
+ struct gprs_rlcmac_dl_tbf **tbf);
+
+int dl_tbf_append_data(struct gprs_rlcmac_dl_tbf *dl_tbf, uint16_t pdu_delay_csec,
+ const uint8_t *data, uint16_t len);
#ifdef __cplusplus
}