blob: bc7860b2deb248f9de77f4577cbc312d6b794021 [file] [log] [blame]
Philippb4cb8382016-09-29 17:01:57 +02001/* OML attribute table generator for ipaccess nanobts */
2
3/* (C) 2016 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Philipp Maier
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#pragma once
23
24#include <stdint.h>
25#include <osmocom/core/msgb.h>
26
27struct msgb *nanobts_attr_bts_get(struct gsm_bts *bts);
28struct msgb *nanobts_attr_nse_get(struct gsm_bts *bts);
29struct msgb *nanobts_attr_cell_get(struct gsm_bts *bts);
30struct msgb *nanobts_attr_nscv_get(struct gsm_bts *bts);
31struct msgb *nanobts_attr_radio_get(struct gsm_bts *bts,
32 struct gsm_bts_trx *trx);