aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/l1_if.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-02-21 09:27:52 +0100
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:26 +0200
commit7bd6e8b89bbb38b292caa0df3c52902c46911c1a (patch)
treea0ba4feb7928c929db7f3b93d4594acc196e8b9a /src/osmo-bts-trx/l1_if.h
parentd692b6e054b25474615401dcaf33209c03923e9d (diff)
TRX: Ciphering
Diffstat (limited to 'src/osmo-bts-trx/l1_if.h')
-rw-r--r--src/osmo-bts-trx/l1_if.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/osmo-bts-trx/l1_if.h b/src/osmo-bts-trx/l1_if.h
index 8a0a90e6..0f4e8113 100644
--- a/src/osmo-bts-trx/l1_if.h
+++ b/src/osmo-bts-trx/l1_if.h
@@ -56,6 +56,12 @@ struct trx_chan_state {
uint8_t ul_mask; /* mask of received bursts */
uint8_t lost; /* (SACCH) loss detection */
uint8_t rsl_cmode, tch_mode; /* mode for TCH channels */
+ int ul_encr_algo; /* A5/x encry algo downlink */
+ int dl_encr_algo; /* A5/x encry algo uplink */
+ int ul_encr_key_len;
+ int dl_encr_key_len;
+ uint8_t ul_encr_key[8];
+ uint8_t dl_encr_key[8];
};
struct trx_config {