aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-02-14 00:20:59 +0100
committerHarald Welte <laforge@gnumonks.org>2018-02-14 09:04:56 +0100
commit098aa71e83a86200a18088927b4753909f5ed518 (patch)
tree6ac12d5ea9f9016d51793165fb404e55ada475ed /include
parent2346619c1aa1eba3d8f7e939a0efd704ea3fe932 (diff)
remove unused "auth policy" VTY command
This is yet another unsused bit from the OsmoNITB legacy. Related: OS#2528 Change-Id: I825e659da529257e5edec94d9d59f0e10c1b4c63
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/gsm_data.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/osmocom/msc/gsm_data.h b/include/osmocom/msc/gsm_data.h
index 970128866..67b657a11 100644
--- a/include/osmocom/msc/gsm_data.h
+++ b/include/osmocom/msc/gsm_data.h
@@ -207,13 +207,6 @@ static const struct rate_ctr_group_desc msc_ctrg_desc = {
msc_ctr_description,
};
-enum gsm_auth_policy {
- GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
- GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
- GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
- GSM_AUTH_POLICY_REGEXP, /* accept IMSIs matching given regexp */
-};
-
#define MSC_PAGING_RESPONSE_TIMER_DEFAULT 10
struct gsm_tz {
@@ -235,7 +228,6 @@ struct gsm_network {
uint16_t network_code;
char *name_long;
char *name_short;
- enum gsm_auth_policy auth_policy;
/* bit-mask of permitted encryption algorithms. LSB=A5/0, MSB=A5/7 */
uint8_t a5_encryption_mask;
bool authentication_required;
@@ -372,9 +364,6 @@ extern void talloc_ctx_init(void *ctx_root);
extern void *tall_bsc_ctx;
extern int ipacc_rtp_direct;
-enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
-const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
-
enum rrlp_mode rrlp_mode_parse(const char *arg);
const char *rrlp_mode_name(enum rrlp_mode mode);