summaryrefslogblamecommitdiffstats
path: root/src/host/layer23/include/osmocom/settings.h
blob: 7bab0d7c979ac04a16daa4114da8433c27c66379 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                       
#ifndef _settings_h
#define _settings_h

struct gsm_settings {
	int			simtype; /* selects card on power on */

	/* test card simulator settings */
	char 			test_imsi[20]; /* just in case... */
	uint8_t			test_barr;
	uint8_t			test_rplmn_valid;
	uint16_t		test_rplmn_mcc, test_rplmn_mnc;
	uint8_t			test_always; /* ...search hplmn... */
};

int gsm_settings_init(struct osmocom_ms *ms);

#endif /* _settings_h */