blob: c2cf46a26069bf6e792e74654565042834c322e7 [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 Welte167df882009-02-17 14:35:45 +000035enum signal_subsystems {
36 SS_PAGING,
37 SS_SMS,
38 SS_ABISIP,
Harald Weltef9a8cc32009-05-01 15:39:49 +000039 SS_NM,
Harald Welte167df882009-02-17 14:35:45 +000040};
Holger Freyther2b2d2e32009-02-14 22:51:00 +000041
Harald Welte595ad7b2009-02-16 22:05:44 +000042/* SS_PAGING signals */
43enum signal_paging {
44 S_PAGING_COMPLETED,
Holger Freyther2b2d2e32009-02-14 22:51:00 +000045};
46
Harald Welte167df882009-02-17 14:35:45 +000047/* SS_ABISIP signals */
48enum signal_abisip {
49 S_ABISIP_BIND_ACK,
50};
51
Harald Weltef9a8cc32009-05-01 15:39:49 +000052/* SS_NM signals */
53enum signal_nm {
54 S_NM_SW_ACTIV_REP, /* GSM 12.21 software activated report */
55 S_NM_FAIL_REP, /* GSM 12.21 failure event report */
56};
57
Harald Welte595ad7b2009-02-16 22:05:44 +000058typedef int signal_cbfn(unsigned int subsys, unsigned int signal,
59 void *handler_data, void *signal_data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000060
61struct paging_signal_data {
Holger Freyther2b2d2e32009-02-14 22:51:00 +000062 struct gsm_subscriber *subscr;
63 struct gsm_bts *bts;
64
65 /* NULL in case the paging didn't work */
66 struct gsm_lchan *lchan;
67};
68
Holger Freyther2b2d2e32009-02-14 22:51:00 +000069/* Management */
Harald Welte595ad7b2009-02-16 22:05:44 +000070int register_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data);
71void unregister_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000072
73/* Dispatch */
Harald Welte595ad7b2009-02-16 22:05:44 +000074void dispatch_signal(unsigned int subsys, unsigned int signal, void *signal_data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000075
76
77#endif