aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/common_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/include/openbsc/common_cs.h')
-rw-r--r--openbsc/include/openbsc/common_cs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/common_cs.h b/openbsc/include/openbsc/common_cs.h
index 8549a837b..172d6e621 100644
--- a/openbsc/include/openbsc/common_cs.h
+++ b/openbsc/include/openbsc/common_cs.h
@@ -7,6 +7,14 @@ struct gsm_network;
typedef int (*mncc_recv_cb_t)(struct gsm_network *, struct msgb *);
+#define MAX_A5_KEY_LEN (128/8)
+
+struct gsm_encr {
+ uint8_t alg_id;
+ uint8_t key_len;
+ uint8_t key[MAX_A5_KEY_LEN];
+};
+
struct gsm_network *gsm_network_init(void *ctx,
uint16_t country_code,
uint16_t network_code,