blob: e53c1942913ba78899680af13beb88a849c30445 [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 */
Holger Freyther9b177762009-02-16 19:07:18 +000031#define S_PAGING 0x0001
32#define S_SMS 0x0002
Holger Freyther2b2d2e32009-02-14 22:51:00 +000033
34
35struct signal_data {
Holger Freythere4b3fa32009-02-14 22:51:10 +000036 int area;
Holger Freyther2b2d2e32009-02-14 22:51:00 +000037};
38
39
40struct paging_signal_data {
41 struct signal_data data;
42
43 struct gsm_subscriber *subscr;
44 struct gsm_bts *bts;
45
46 /* NULL in case the paging didn't work */
47 struct gsm_lchan *lchan;
48};
49
Holger Freyther9b177762009-02-16 19:07:18 +000050struct sms_signal_data {
51 struct signal_data data;
52
53 struct sms_submit *sms;
54};
55
Holger Freyther2b2d2e32009-02-14 22:51:00 +000056
57/* Management */
58void register_signal_handler(int areas, int (*sig)(struct signal_data *, void *data), void *data);
Holger Freythere4b3fa32009-02-14 22:51:10 +000059void remove_signal_handler(int areas, int (*sig)(struct signal_data *, void *data), void *data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000060
61/* Dispatch */
Holger Freythere4b3fa32009-02-14 22:51:10 +000062void dispatch_signal(struct signal_data *data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000063
64
65#endif