blob: f95459959598c8fb1307fda4ec2d6418bc6e6d22 [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001/* 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
8 * 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
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 Affero General Public License for more details.
16 *
17 * 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/>.
19 *
20 */
21
22#include <sys/types.h>
23
24#include <openbsc/gsm_data.h>
25#include <osmocore/tlv.h>
26#include <openbsc/abis_nm.h>
27
28static struct gsm_bts_model model_unknown = {
29 .type = GSM_BTS_TYPE_UNKNOWN,
30 .name = "unknown",
31 .oml_rcvmsg = &abis_nm_rcvmsg,
32 .nm_att_tlvdef = {
33 .def = {
34 },
35 },
36};
37
38int bts_model_unknown_init(void)
39{
40 return gsm_bts_model_register(&model_unknown);
41}