blob: de512d1ae0d375e01b1d58c65311d5c4b2ca8f93 [file] [log] [blame]
Harald Welteb68899d2009-01-06 21:47:18 +00001/* Paging helper and manager.... */
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 PAGING_H
22#define PAGING_H
23
Harald Welte12247c62009-05-21 07:23:02 +000024#include <stdlib.h>
Harald Welteb68899d2009-01-06 21:47:18 +000025#include <string.h>
26
27#include "linuxlist.h"
28#include "gsm_data.h"
29#include "gsm_subscriber.h"
Harald Welte38c2f132009-01-06 23:10:57 +000030#include "timer.h"
Harald Welteb68899d2009-01-06 21:47:18 +000031
Harald Welteb68899d2009-01-06 21:47:18 +000032/* call once for every gsm_bts... */
Holger Freyther1fd34142009-02-09 23:42:03 +000033void paging_init(struct gsm_bts *bts);
Harald Welteb68899d2009-01-06 21:47:18 +000034
35/* schedule paging request */
Harald Welte0932d1e2009-02-16 22:53:52 +000036void paging_request(struct gsm_bts *bts, struct gsm_subscriber *subscr,
37 int type, gsm_cbfn *cbfn, void *data);
Harald Welteb68899d2009-01-06 21:47:18 +000038
Harald Welte763da002009-02-06 12:52:14 +000039/* stop paging requests */
Harald Welte75a1fa82009-02-17 01:39:41 +000040void paging_request_stop(struct gsm_bts *bts, struct gsm_subscriber *subscr,
41 struct gsm_lchan *lchan);
Harald Welte763da002009-02-06 12:52:14 +000042
Holger Freyther392209c2009-02-10 00:06:19 +000043/* update paging load */
44void paging_update_buffer_space(struct gsm_bts *bts, u_int16_t);
45
Harald Welteb68899d2009-01-06 21:47:18 +000046#endif