blob: ea5e4e2ab0cac7fa43f0037710aad6bc01a41d99 [file] [log] [blame]
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +08001/*
Holger Hans Peter Freytherdc030962013-01-07 17:30:13 +01002 * (C) 2010-2013 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * (C) 2010-2013 by On-Waves
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +08004 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01007 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +08009 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010014 * GNU Affero General Public License for more details.
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +080015 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +080018 *
19 */
20
21#ifndef OSMO_BSC_GRACE_H
22#define OSMO_BSC_GRACE_H
23
Neels Hofmeyr150abff2017-01-25 16:14:25 +010024#include <openbsc/gsm_data.h>
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +080025
Neels Hofmeyra369e242017-02-23 21:57:23 +010026struct bsc_msc_data;
Holger Hans Peter Freytherdc030962013-01-07 17:30:13 +010027
Holger Hans Peter Freyther3d119f12012-08-30 16:43:28 +020028int bsc_grace_allow_new_connection(struct gsm_network *net, struct gsm_bts *bts);
Neels Hofmeyra369e242017-02-23 21:57:23 +010029int bsc_grace_paging_request(struct gsm_subscriber *sub, int type, struct bsc_msc_data *msc);
Holger Hans Peter Freytherbd76fab2010-09-16 00:20:56 +080030
31#endif