blob: 2cd87b82e08bd8184f9ae91f2835a5c73e4f2e44 [file] [log] [blame]
Harald Welte55d724a2017-10-16 18:25:45 +02001/*! \addtogroup sms
2 * @{
3 * \file gsm0411_utils.h */
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02004
Sylvain Munaut12ba7782014-06-16 10:13:40 +02005#pragma once
Andreas.Eversbergd84f47a2011-11-06 20:22:12 +01006
Holger Hans Peter Freyther6145a252013-09-04 12:12:58 +02007#include <time.h>
8
Harald Weltead633b02011-12-01 21:08:19 +01009/* Turn int into semi-octet representation: 98 => 0x89 */
10uint8_t gsm411_bcdify(uint8_t value);
11
12/* Turn semi-octet representation into int: 0x89 => 98 */
13uint8_t gsm411_unbcdify(uint8_t value);
14
Andreas.Eversbergd84f47a2011-11-06 20:22:12 +010015struct msgb *gsm411_msgb_alloc(void);
16
17/* Generate 03.40 TP-SCTS */
18void gsm340_gen_scts(uint8_t *scts, time_t time);
19
20/* Decode 03.40 TP-SCTS (into utc/gmt timestamp) */
21time_t gsm340_scts(uint8_t *scts);
22
23/* decode validity period. return minutes */
24unsigned long gsm340_validity_period(uint8_t sms_vpf, uint8_t *sms_vp);
25
26/* determine coding alphabet dependent on GSM 03.38 Section 4 DCS */
27enum sms_alphabet gsm338_get_sms_alphabet(uint8_t dcs);
28
29/* generate a TPDU address field compliant with 03.40 sec. 9.1.2.5 */
30int gsm340_gen_oa(uint8_t *oa, unsigned int oa_len, uint8_t type,
31 uint8_t plan, const char *number);
32
33/* Prefix msg with a RP header */
34int gsm411_push_rp_header(struct msgb *msg, uint8_t rp_msg_type,
35 uint8_t rp_msg_ref);
36
37/* Prefix msg with a 04.08/04.11 CP header */
38int gsm411_push_cp_header(struct msgb *msg, uint8_t proto, uint8_t trans,
39 uint8_t msg_type);
Harald Welte55d724a2017-10-16 18:25:45 +020040
41/*! @} */