blob: 800b4311c1be6517f652435ae4dbc3b51d25ac6b [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file msgfile.h */
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +08002/*
3 * (C) 2010 by Holger Hans Peter Freyther
4 * (C) 2010 by On-Waves
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
Sylvain Munaut12ba7782014-06-16 10:13:40 +020023#pragma once
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +080024
Pablo Neira Ayuso1b4a42c2011-05-07 13:01:41 +020025#include <osmocom/core/linuxlist.h>
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +080026
27/**
28 * One message in the list.
29 */
Pablo Neira Ayuso1b4a42c2011-05-07 13:01:41 +020030struct osmo_config_entry {
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +080031 struct llist_head list;
32
33 /* number for everyone to use */
34 int nr;
35
36 /* data from the file */
37 char *mcc;
38 char *mnc;
39 char *option;
40 char *text;
41};
42
Pablo Neira Ayuso1b4a42c2011-05-07 13:01:41 +020043struct osmo_config_list {
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +080044 struct llist_head entry;
45};
46
Pablo Neira Ayuso1b4a42c2011-05-07 13:01:41 +020047struct osmo_config_list* osmo_config_list_parse(void *ctx, const char *filename);