blob: db1566682bab4b9c1d0c3f61a986665921a8f30a [file] [log] [blame]
Harald Welte37b61652017-10-16 18:46:03 +02001/*! \addtogroup gsm0808
2 * @{
3 * \file gsm0808_utils.h */
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02004/*
5 * (C) 2016 by Sysmocom s.f.m.c. GmbH
Philipp Maier22401432017-03-24 17:59:26 +01006 * All Rights Reserved
7 *
8 * Author: Philipp Maier
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
19 *
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 *
23 */
24#pragma once
25
Harald Welte20725b92017-05-15 12:50:04 +020026struct sockaddr_storage;
Philipp Maier22401432017-03-24 17:59:26 +010027
Philipp Maier6f725d62017-03-24 18:03:17 +010028#include <osmocom/gsm/protocol/gsm_08_08.h>
29
Philipp Maier22401432017-03-24 17:59:26 +010030uint8_t gsm0808_enc_aoip_trasp_addr(struct msgb *msg,
31 const struct sockaddr_storage *ss);
Philipp Maier22401432017-03-24 17:59:26 +010032int gsm0808_dec_aoip_trasp_addr(struct sockaddr_storage *ss,
33 const uint8_t *elem, uint8_t len);
Philipp Maier6f725d62017-03-24 18:03:17 +010034uint8_t gsm0808_enc_speech_codec(struct msgb *msg,
35 const struct gsm0808_speech_codec *sc);
Philipp Maier6f725d62017-03-24 18:03:17 +010036int gsm0808_dec_speech_codec(struct gsm0808_speech_codec *sc,
37 const uint8_t *elem, uint8_t len);
Philipp Maier6f725d62017-03-24 18:03:17 +010038uint8_t gsm0808_enc_speech_codec_list(struct msgb *msg,
39 const struct gsm0808_speech_codec_list
40 *scl);
Philipp Maier6f725d62017-03-24 18:03:17 +010041int gsm0808_dec_speech_codec_list(struct gsm0808_speech_codec_list *scl,
42 const uint8_t *elem, uint8_t len);
Philipp Maiere0c65302017-03-28 17:05:40 +020043uint8_t gsm0808_enc_channel_type(struct msgb *msg,
44 const struct gsm0808_channel_type *ct);
Philipp Maiere0c65302017-03-28 17:05:40 +020045int gsm0808_dec_channel_type(struct gsm0808_channel_type *ct,
46 const uint8_t *elem, uint8_t len);
Philipp Maier14e76b92017-03-28 18:36:52 +020047uint8_t gsm0808_enc_encrypt_info(struct msgb *msg,
48 const struct gsm0808_encrypt_info *ei);
Philipp Maier14e76b92017-03-28 18:36:52 +020049int gsm0808_dec_encrypt_info(struct gsm0808_encrypt_info *ei,
50 const uint8_t *elem, uint8_t len);
Philipp Maier783047e2017-03-29 11:35:50 +020051uint8_t gsm0808_enc_cell_id_list(struct msgb *msg,
52 const struct gsm0808_cell_id_list *cil);
Philipp Maier783047e2017-03-29 11:35:50 +020053int gsm0808_dec_cell_id_list(struct gsm0808_cell_id_list *cil,
54 const uint8_t *elem, uint8_t len);
Neels Hofmeyr9a391e22017-06-23 02:34:08 +020055int gsm0808_chan_type_to_speech_codec(uint8_t perm_spch);
Philipp Maier884ba0f2017-06-02 13:49:16 +020056int gsm0808_speech_codec_from_chan_type(struct gsm0808_speech_codec *sc,
57 uint8_t perm_spch);
Harald Welte37b61652017-10-16 18:46:03 +020058
59/*! @} */