blob: cb561051a56b3f0279723e64087d930289b3d64c [file] [log] [blame]
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001/* Stubs required for linking */
2
3/* (C) 2018 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +02004 *
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 */
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +020021
Neels Hofmeyr958f2592018-05-27 01:26:31 +020022#include <stdbool.h>
23struct gsm_bts;
24struct gsm_bts_trx_ts;
25struct msgb;
26struct bsc_msc_data;
27
28bool on_gsm_ts_init(struct gsm_bts_trx_ts *ts)
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +020029{
Neels Hofmeyr958f2592018-05-27 01:26:31 +020030 /* No TS init required here. */
31 return true;
32}
33
34int abis_rsl_rcvmsg(struct msgb *msg)
35{
36 /* No RSL handling here */
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +020037 return 0;
38}
Neels Hofmeyr958f2592018-05-27 01:26:31 +020039
40void paging_flush_bts(struct gsm_bts *bts, struct bsc_msc_data *msc)
41{
42 /* No paging flushing */
43}
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020044
45void ts_fsm_alloc(struct gsm_bts_trx_ts *ts)
46{}