aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/sigtran/protocol/mtp.h
blob: 8b990c0ba17c2049669124998bb3f4f652d017ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include <osmocom/core/utils.h>

/* Chapter 15.17.4 of Q.704 + RFC4666 3.4.5. */
/* Section 5.1 of ETSI EG 201 693: MTP SI code allocations (for NI= 00) */
enum mtp_si_ni00 {
	MTP_SI_SNM	= 0,
	MTP_SI_STM	= 1,
	MTP_SI_SCCP	= 3,
	MTP_SI_TUP	= 4,
	MTP_SI_ISUP	= 5,
	MTP_SI_DUP	= 6, /* call related */
	MTP_SI_DUP_FAC	= 7, /* facility related */
	MTP_SI_TESTING	= 8,
	MTP_SI_B_ISUP	= 9,
	MTP_SI_SAT_ISUP = 10,
	MTP_SI_SPEECH	= 11, /* speech processing element */
	MTP_SI_AAL2_SIG	= 12,
	MTP_SI_BICC	= 13,
	MTP_SI_GCP	= 14,
};

extern const struct value_string mtp_si_vals[];