libosmo-sigtran 2.1.0.189-f95eb5
Osmocom SIGTRAN library
mtp_sap.h
Go to the documentation of this file.
1#pragma once
2
3/* MTP User SAP description in accordance with ITU Q.701 */
4
5/* (C) 2017 by Harald Welte <laforge@gnumonks.org>
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include <stdint.h>
24#include <osmocom/core/prim.h>
26
32};
33extern const struct value_string osmo_mtp_prim_type_names[];
34static inline const char *osmo_mtp_prim_type_name(enum osmo_mtp_prim_type val)
35{
36 return get_value_string(osmo_mtp_prim_type_names, val);
37}
38
39/* ITU Q.704 14.2 Service information octet. See enum mtp_si_ni00 in mtp.h. */
40#define MTP_SIO(service, net_ind) ((((net_ind) & 0x3) << 6) | ((service) & 0xF))
41
43 uint32_t opc;
44 uint32_t dpc;
45 uint8_t sls;
46 uint8_t sio;
47};
48
50 uint32_t affected_dpc;
51};
52
54 uint32_t affected_dpc;
55};
56
58 uint32_t affected_dpc;
59 uint32_t cause; /* enum mtp_unavail_cause */
62};
63
65 struct osmo_prim_hdr oph;
66 union {
71 } u;
72};
73
74#define msgb_mtp_prim(msg) ((struct osmo_mtp_prim *)(msg)->l1h)
75
76char *osmo_mtp_prim_name(const struct osmo_prim_hdr *oph);
77
79 struct msgb *msg);
const struct value_string osmo_mtp_prim_type_names[]
Definition: mtp_sap.c:34
struct osmo_mtp_prim * osmo_mtp_prim_xfer_req_prepend(const struct osmo_mtp_transfer_param *param, struct msgb *msg)
Wrap MTP payload into an MTP-TRANSFER.req primitive.
Definition: mtp_sap.c:146
static const char * osmo_mtp_prim_type_name(enum osmo_mtp_prim_type val)
Definition: mtp_sap.h:34
osmo_mtp_prim_type
Definition: mtp_sap.h:27
@ OSMO_MTP_PRIM_RESUME
Definition: mtp_sap.h:30
@ OSMO_MTP_PRIM_TRANSFER
Definition: mtp_sap.h:28
@ OSMO_MTP_PRIM_PAUSE
Definition: mtp_sap.h:29
@ OSMO_MTP_PRIM_STATUS
Definition: mtp_sap.h:31
char * osmo_mtp_prim_name(const struct osmo_prim_hdr *oph)
Definition: mtp_sap.c:59
Definition: mtp_sap.h:49
uint32_t affected_dpc
Definition: mtp_sap.h:50
Definition: mtp_sap.h:64
struct osmo_mtp_status_param status
Definition: mtp_sap.h:70
struct osmo_mtp_resume_param resume
Definition: mtp_sap.h:69
union osmo_mtp_prim::@0 u
struct osmo_mtp_transfer_param transfer
Definition: mtp_sap.h:67
struct osmo_mtp_pause_param pause
Definition: mtp_sap.h:68
struct osmo_prim_hdr oph
Definition: mtp_sap.h:65
Definition: mtp_sap.h:53
uint32_t affected_dpc
Definition: mtp_sap.h:54
Definition: mtp_sap.h:57
uint32_t cause
Definition: mtp_sap.h:59
uint32_t affected_dpc
Definition: mtp_sap.h:58
bool congestion_level_present
Definition: mtp_sap.h:60
uint8_t congestion_level
Definition: mtp_sap.h:61
Definition: mtp_sap.h:42
uint32_t dpc
Definition: mtp_sap.h:44
uint32_t opc
Definition: mtp_sap.h:43
uint8_t sls
Definition: mtp_sap.h:45
uint8_t sio
Definition: mtp_sap.h:46