blob: 7432164ded82a1e71a6aa7cdd6fdb6c9801924bd [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/*
Harald Weltee08da972017-11-13 01:00:26 +09005 * (C) 2016 by sysmocom - s.f.m.c. GmbH, Author: Philipp Maier
Philipp Maier22401432017-03-24 17:59:26 +01006 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
Philipp Maier22401432017-03-24 17:59:26 +01009 *
10 * This program is free software; you can redistribute it and/or modify
Harald Weltee08da972017-11-13 01:00:26 +090011 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
Philipp Maier22401432017-03-24 17:59:26 +010013 * (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
Harald Weltee08da972017-11-13 01:00:26 +090018 * GNU General Public License for more details.
Philipp Maier22401432017-03-24 17:59:26 +010019 *
Harald Weltee08da972017-11-13 01:00:26 +090020 * You should have received a copy of the GNU General Public License
Philipp Maier22401432017-03-24 17:59:26 +010021 * 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/*! @} */