blob: 6a0d6fb90fa18ca747c2187a90689e982e5397d5 [file] [log] [blame]
Holger Freyther2b2d2e32009-02-14 22:51:00 +00001/* Generic signalling/notification infrastructure */
2/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#ifndef OPENBSC_SIGNAL_H
22#define OPENBSC_SIGNAL_H
23
24#include <openbsc/gsm_data.h>
25#include <openbsc/gsm_subscriber.h>
26
27
28/*
29 * Signalling areas
30 */
31#define S_PAGING 0x0001
32
33
34struct signal_data {
35};
36
37
38struct paging_signal_data {
39 struct signal_data data;
40
41 struct gsm_subscriber *subscr;
42 struct gsm_bts *bts;
43
44 /* NULL in case the paging didn't work */
45 struct gsm_lchan *lchan;
46};
47
48
49/* Management */
50void register_signal_handler(int areas, int (*sig)(struct signal_data *, void *data), void *data);
51void remove_signal_handler(int (*sig)(struct signal_data *, void *data), void *data);
52
53/* Dispatch */
54void dispatch_signal(int area, struct signal_data *data);
55
56
57#endif