summaryrefslogtreecommitdiffstats
path: root/gsm.h
diff options
context:
space:
mode:
authorAndreas Eversberg2011-02-20 17:34:24 +0100
committerAndreas Eversberg2011-02-20 17:34:24 +0100
commitd5e639588de9c88d5398cd047c5c73f6d439a5a7 (patch)
treef80db57cfce471be14dce3047386b2d42b3efd96 /gsm.h
parentdon't execve() a shell process but always double-fork and then exec the progr... (diff)
downloadlcr-d5e639588de9c88d5398cd047c5c73f6d439a5a7.tar.gz
lcr-d5e639588de9c88d5398cd047c5c73f6d439a5a7.tar.xz
lcr-d5e639588de9c88d5398cd047c5c73f6d439a5a7.zip
[gsm] Removed obsolete gsm.conf handling. Fixed minor compiling issues.
Diffstat (limited to 'gsm.h')
-rw-r--r--gsm.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/gsm.h b/gsm.h
index 5d12646..4bfad78 100644
--- a/gsm.h
+++ b/gsm.h
@@ -3,18 +3,6 @@
extern int new_callref;
-struct gsm_conf {
- char debug[128]; /* debug info */
- char openbsc_cfg[128]; /* openbsc config file */
- char short_name[64]; /* short network name */
- char long_name[64]; /* long network name */
- char hlr[64]; /* database name */
- int allow_all; /* accept unknown subscribers */
- int keep_l2; /* keep layer 2 after exit */
- char pcapfile[128]; /* open capture file for BS11 links */
- int reject_cause; /* reject cause for unsubcribed IMSIs */
-};
-
struct mncc_q_entry {
struct mncc_q_entry *next;
unsigned int len;
@@ -23,9 +11,6 @@ struct mncc_q_entry {
struct lcr_gsm {
void *network; /* OpenBSC network handle */
- struct gsm_conf conf; /* gsm.conf options */
- int gsm_sock; /* loopback interface GSM side */
- int gsm_port; /* loopback interface port number */
struct lcr_fd mncc_lfd; /* Unix domain socket to OpenBSC MNCC */
struct mncc_q_entry *mncc_q_hd;