blob: e979d5c690eea36db64cba489146666d31fe69b5 [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>
Harald Welte595ad7b2009-02-16 22:05:44 +00003 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Freyther2b2d2e32009-02-14 22:51:00 +00004 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#ifndef OPENBSC_SIGNAL_H
23#define OPENBSC_SIGNAL_H
24
Harald Welte595ad7b2009-02-16 22:05:44 +000025#include <stdlib.h>
26#include <errno.h>
27
Holger Freyther2b2d2e32009-02-14 22:51:00 +000028#include <openbsc/gsm_data.h>
29#include <openbsc/gsm_subscriber.h>
30
31
32/*
Harald Welte595ad7b2009-02-16 22:05:44 +000033 * Signalling subsystems
Holger Freyther2b2d2e32009-02-14 22:51:00 +000034 */
Harald Welte595ad7b2009-02-16 22:05:44 +000035#define SS_PAGING 0x0001
36#define SS_SMS 0x0002
Holger Freyther2b2d2e32009-02-14 22:51:00 +000037
Harald Welte595ad7b2009-02-16 22:05:44 +000038/* SS_PAGING signals */
39enum signal_paging {
40 S_PAGING_COMPLETED,
Holger Freyther2b2d2e32009-02-14 22:51:00 +000041};
42
Harald Welte595ad7b2009-02-16 22:05:44 +000043typedef int signal_cbfn(unsigned int subsys, unsigned int signal,
44 void *handler_data, void *signal_data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000045
46struct paging_signal_data {
Holger Freyther2b2d2e32009-02-14 22:51:00 +000047 struct gsm_subscriber *subscr;
48 struct gsm_bts *bts;
49
50 /* NULL in case the paging didn't work */
51 struct gsm_lchan *lchan;
52};
53
Holger Freyther2b2d2e32009-02-14 22:51:00 +000054/* Management */
Harald Welte595ad7b2009-02-16 22:05:44 +000055int register_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data);
56void unregister_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000057
58/* Dispatch */
Harald Welte595ad7b2009-02-16 22:05:44 +000059void dispatch_signal(unsigned int subsys, unsigned int signal, void *signal_data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000060
61
62#endif