blob: baf13d05c0fb1472c52aa526e153a5f4a80f5603 [file] [log] [blame]
Holger Hans Peter Freyther47765712010-09-30 17:45:12 +08001/* A USSD Module */
2/*
3 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
4 * (C) 2010 by On-Waves
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <bsc_data.h>
Holger Hans Peter Freyther0f349f22010-10-06 04:39:08 +080024
25/*
26 * Check the msg and identify a Location Updating Request and see if the
27 * LAC is different to this one and then mark the CR message.
28 */
29int bsc_ussd_handle_out_msg(struct bsc_data *bsc, struct sccp_parse_result *result,
30 struct msgb *msg)
31{
32 /* Only search for this in the CR message */
33 if (sccp_determine_msg_type(msg) != SCCP_MSG_TYPE_CR)
34 return 0;
35
36 /* now check the kind of GSM message */
37
38 return 0;
39}
Holger Hans Peter Freytherdfcf2df2010-10-06 06:20:35 +080040
41/*
42 * Check the message if it contains a location update request...
43 */
Holger Hans Peter Freyther52280692010-10-06 16:09:25 +080044int bsc_ussd_handle_in_msg(struct bsc_data *bsc, struct sccp_parse_result *res,
Holger Hans Peter Freytherdfcf2df2010-10-06 06:20:35 +080045 struct msgb *msg)
46{
47 return 0;
48}