aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/bsc/osmo_bsc_api.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-04 11:43:57 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 20:06:46 +0100
commite1996f013c01822ec274b38c7ed75957c6b25d3d (patch)
treeeac62d440bcaa074a6e778e742e4221dd433f608 /openbsc/src/bsc/osmo_bsc_api.c
parent6c199e7d999573e0e575f03754122d405a87ef3a (diff)
bsc_api: The cipher mode is not a message on the air interface
The cipher mode reject will be send in case the BSC is not able to support the requested cipher. So this reject can be handled by however attempts to enable ciphering.
Diffstat (limited to 'openbsc/src/bsc/osmo_bsc_api.c')
-rw-r--r--openbsc/src/bsc/osmo_bsc_api.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/openbsc/src/bsc/osmo_bsc_api.c b/openbsc/src/bsc/osmo_bsc_api.c
index f1ba559c4..557024130 100644
--- a/openbsc/src/bsc/osmo_bsc_api.c
+++ b/openbsc/src/bsc/osmo_bsc_api.c
@@ -29,11 +29,6 @@ static void bsc_cipher_mode_compl(struct gsm_subscriber_connection *conn,
{
}
-static void bsc_cipher_mode_reject(struct gsm_subscriber_connection *conn,
- struct msgb *msg, uint16_t reason)
-{
-}
-
static int bsc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg,
uint16_t chosen_channel)
{
@@ -64,7 +59,6 @@ static void bsc_clear_compl(struct gsm_subscriber_connection *conn)
static struct bsc_api bsc_handler = {
.sapi_n_reject = bsc_sapi_n_reject,
.cipher_mode_compl = bsc_cipher_mode_compl,
- .cipher_mode_reject = bsc_cipher_mode_reject,
.compl_l3 = bsc_compl_l3,
.dtap = bsc_dtap,
.assign_compl = bsc_assign_compl,