blob: f1135294f07ca31c71cf3791f332017e87f7ba44 [file] [log] [blame]
Daniel Willmann604d8512010-01-11 13:50:44 +01001/* Generic BTS - VTY code tries to allocate this BTS before type is known */
2
3/* (C) 2010 by Daniel Willmann <daniel@totalueberwachung.de>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Daniel Willmann604d8512010-01-11 13:50:44 +010010 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Daniel Willmann604d8512010-01-11 13:50:44 +010016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Daniel Willmann604d8512010-01-11 13:50:44 +010019 *
20 */
21
Daniel Willmann604d8512010-01-11 13:50:44 +010022
23#include <openbsc/gsm_data.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010024#include <osmocom/gsm/tlv.h>
Daniel Willmann604d8512010-01-11 13:50:44 +010025#include <openbsc/abis_nm.h>
26
27static struct gsm_bts_model model_unknown = {
28 .type = GSM_BTS_TYPE_UNKNOWN,
Harald Welte09cefee2011-02-12 12:29:21 +010029 .name = "unknown",
30 .oml_rcvmsg = &abis_nm_rcvmsg,
Daniel Willmann604d8512010-01-11 13:50:44 +010031 .nm_att_tlvdef = {
32 .def = {
33 },
34 },
35};
36
37int bts_model_unknown_init(void)
38{
39 return gsm_bts_model_register(&model_unknown);
40}