summaryrefslogtreecommitdiffstats
path: root/Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h
diff options
context:
space:
mode:
authorTom2011-08-16 15:41:46 +0200
committerTom2011-08-16 15:41:46 +0200
commitf910171deda0933e506cf3ffc216ee8daa418c24 (patch)
treedddee7cdad41fc4f3d8c1de95148d0a2daac1193 /Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h
parentanother system info 2 description (diff)
downloadimsi-catcher-detection-f910171deda0933e506cf3ffc216ee8daa418c24.tar.gz
imsi-catcher-detection-f910171deda0933e506cf3ffc216ee8daa418c24.tar.xz
imsi-catcher-detection-f910171deda0933e506cf3ffc216ee8daa418c24.zip
corrected spelling mistake and added 2 new papers for gsm specs
Diffstat (limited to 'Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h')
-rw-r--r--Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h b/Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h
deleted file mode 100644
index e681216..0000000
--- a/Src/osmocombb/src/host/layer23/include/osmocom/bb/common/networks.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef _NETWORKS_H
-#define _NETWORKS_H
-
-#define GSM_INPUT_INVALID 0xffff
-
-struct gsm_networks {
- uint16_t mcc;
- int16_t mnc;
- const char *name;
-};
-
-int gsm_match_mcc(uint16_t mcc, char *imsi);
-int gsm_match_mnc(uint16_t mcc, uint8_t mnc, char *imsi);
-const char *gsm_print_mcc(uint16_t mcc);
-const char *gsm_print_mnc(uint16_t mcc);
-const char *gsm_get_mcc(uint16_t mcc);
-const char *gsm_get_mnc(uint16_t mcc, uint16_t mnc);
-const char *gsm_imsi_mcc(char *imsi);
-const char *gsm_imsi_mnc(char *imsi);
-const uint16_t gsm_input_mcc(char *string);
-const uint16_t gsm_input_mnc(char *string);
-
-#endif /* _NETWORKS_H */
-