blob: c6526c218c2ac6b9c16d026cead0d57258bb730e [file] [log] [blame]
Harald Welte783d0732014-12-29 17:09:11 +01001/*
2 * (C) 2014 by Harald Welte <laforge@gnumonks.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
22#include <stdint.h>
23#include <stdlib.h>
24#include <string.h>
25
26#include <osmocom/core/talloc.h>
27#include <osmocom/gsm/protocol/gsm_03_41.h>
28
29struct gsm341_ms_message *
30gsm0341_build_msg(void *ctx, uint8_t geo_scope, uint8_t msg_code,
31 uint8_t update, uint16_t msg_id, uint8_t dcs,
32 uint8_t page_total, uint8_t page_cur,
33 uint8_t *data, uint8_t len)
34{
35 struct gsm341_ms_message *cbmsg;
36
37 if (len > 88)
38 return NULL;
39
40 cbmsg = talloc_zero_size(ctx, sizeof(*cbmsg)+len);
41 if (!cbmsg)
42 return NULL;
43
44 cbmsg->serial.code_hi = (msg_code >> 4) & 0xF;
45 cbmsg->serial.gs = geo_scope;
46 cbmsg->serial.update = update;
47 cbmsg->serial.code_lo = msg_code & 0xF;
48 cbmsg->msg_id = msg_id;
49 cbmsg->dcs.group = dcs >> 4;
50 cbmsg->dcs.language = dcs & 0xF;
51 cbmsg->page.total = page_total;
52 cbmsg->page.current = page_cur;
53 memcpy(cbmsg->data, data, len);
54
55 return cbmsg;
56}