aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-09-07 12:41:38 +0200
committerHarald Welte <laforge@gnumonks.org>2011-09-07 12:41:38 +0200
commit4329099e284cdc82c1ff8da7e1c447489438f602 (patch)
tree81964f78fbc35d3c87864ba2a1c523700d006039
parentf3b5932ecf80e50e634fe0719f09304c329bd032 (diff)
add a per-lchan buffer for the last SID frame for osmo-bts
-rw-r--r--openbsc/include/openbsc/gsm_data_shared.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/gsm_data_shared.h b/openbsc/include/openbsc/gsm_data_shared.h
index 5e5e38987..4516aba40 100644
--- a/openbsc/include/openbsc/gsm_data_shared.h
+++ b/openbsc/include/openbsc/gsm_data_shared.h
@@ -244,6 +244,10 @@ struct gsm_lchan {
} meas;
struct {
struct amr_multirate_conf amr_mr;
+ struct {
+ uint8_t buf[16];
+ uint8_t len;
+ } last_sid;
} tch;
#endif
};