autogen: Use autoreconf --install --force
[lcr.git] / mncc.h
1
2 #include <stdint.h>
3
4 #define MNCC_SETUP_REQ          0x0101
5 #define MNCC_SETUP_IND          0x0102
6 #define MNCC_SETUP_RSP          0x0103
7 #define MNCC_SETUP_CNF          0x0104
8 #define MNCC_SETUP_COMPL_REQ    0x0105
9 #define MNCC_SETUP_COMPL_IND    0x0106
10 /* MNCC_REJ_* is perfomed via MNCC_REL_* */
11 #define MNCC_CALL_CONF_IND      0x0107
12 #define MNCC_CALL_PROC_REQ      0x0108
13 #define MNCC_PROGRESS_REQ       0x0109
14 #define MNCC_ALERT_REQ          0x010a
15 #define MNCC_ALERT_IND          0x010b
16 #define MNCC_NOTIFY_REQ         0x010c
17 #define MNCC_NOTIFY_IND         0x010d
18 #define MNCC_DISC_REQ           0x010e
19 #define MNCC_DISC_IND           0x010f
20 #define MNCC_REL_REQ            0x0110
21 #define MNCC_REL_IND            0x0111
22 #define MNCC_REL_CNF            0x0112
23 #define MNCC_FACILITY_REQ       0x0113
24 #define MNCC_FACILITY_IND       0x0114
25 #define MNCC_START_DTMF_IND     0x0115
26 #define MNCC_START_DTMF_RSP     0x0116
27 #define MNCC_START_DTMF_REJ     0x0117
28 #define MNCC_STOP_DTMF_IND      0x0118
29 #define MNCC_STOP_DTMF_RSP      0x0119
30 #define MNCC_MODIFY_REQ         0x011a
31 #define MNCC_MODIFY_IND         0x011b
32 #define MNCC_MODIFY_RSP         0x011c
33 #define MNCC_MODIFY_CNF         0x011d
34 #define MNCC_MODIFY_REJ         0x011e
35 #define MNCC_HOLD_IND           0x011f
36 #define MNCC_HOLD_CNF           0x0120
37 #define MNCC_HOLD_REJ           0x0121
38 #define MNCC_RETRIEVE_IND       0x0122
39 #define MNCC_RETRIEVE_CNF       0x0123
40 #define MNCC_RETRIEVE_REJ       0x0124
41 #define MNCC_USERINFO_REQ       0x0125
42 #define MNCC_USERINFO_IND       0x0126
43 #define MNCC_REJ_REQ            0x0127
44 #define MNCC_REJ_IND            0x0128
45 #define MNCC_PROGRESS_IND       0x0129
46 #define MNCC_CALL_PROC_IND      0x012a
47 #define MNCC_CALL_CONF_REQ      0x012b
48 #define MNCC_START_DTMF_REQ     0x012c
49 #define MNCC_STOP_DTMF_REQ      0x012d
50 #define MNCC_HOLD_REQ           0x012e
51 #define MNCC_RETRIEVE_REQ       0x012f
52
53 #define MNCC_BRIDGE             0x0200
54 #define MNCC_FRAME_RECV         0x0201
55 #define MNCC_FRAME_DROP         0x0202
56 #define MNCC_LCHAN_MODIFY       0x0203
57 #define MNCC_RTP_CREATE         0x0204
58 #define MNCC_RTP_CONNECT        0x0205
59 #define MNCC_RTP_FREE           0x0206
60
61 #define GSM_TCHF_FRAME          0x0300
62 #define GSM_TCHF_FRAME_EFR      0x0301
63 #define GSM_TCHH_FRAME          0x0302
64 #define GSM_TCH_FRAME_AMR       0x0303
65 #define GSM_BAD_FRAME           0x03ff
66
67 #define MNCC_SOCKET_HELLO       0x0400
68
69 #define GSM_MAX_FACILITY        128
70 #define GSM_MAX_SSVERSION       128
71 #define GSM_MAX_USERUSER        128
72
73 #define MNCC_F_BEARER_CAP       0x0001
74 #define MNCC_F_CALLED           0x0002
75 #define MNCC_F_CALLING          0x0004
76 #define MNCC_F_REDIRECTING      0x0008
77 #define MNCC_F_CONNECTED        0x0010
78 #define MNCC_F_CAUSE            0x0020
79 #define MNCC_F_USERUSER         0x0040
80 #define MNCC_F_PROGRESS         0x0080
81 #define MNCC_F_EMERGENCY        0x0100
82 #define MNCC_F_FACILITY         0x0200
83 #define MNCC_F_SSVERSION        0x0400
84 #define MNCC_F_CCCAP            0x0800
85 #define MNCC_F_KEYPAD           0x1000
86 #define MNCC_F_SIGNAL           0x2000
87
88 #define GSM_MAX_FACILITY       128
89 #define GSM_MAX_SSVERSION      128
90 #define GSM_MAX_USERUSER       128
91
92 /* GSM 04.08 Bearer Capability: Information Transfer Capability */
93 enum gsm48_bcap_itcap {
94         GSM48_BCAP_ITCAP_SPEECH         = 0,
95         GSM48_BCAP_ITCAP_UNR_DIG_INF    = 1,
96         GSM48_BCAP_ITCAP_3k1_AUDIO      = 2,
97         GSM48_BCAP_ITCAP_FAX_G3         = 3,
98         GSM48_BCAP_ITCAP_OTHER          = 5,
99         GSM48_BCAP_ITCAP_RESERVED       = 7,
100 };
101
102 /* GSM 04.08 Bearer Capability: Transfer Mode */
103 enum gsm48_bcap_tmod {
104         GSM48_BCAP_TMOD_CIRCUIT         = 0,
105         GSM48_BCAP_TMOD_PACKET          = 1,
106 };
107
108 /* GSM 04.08 Bearer Capability: Coding Standard */
109 enum gsm48_bcap_coding {
110         GSM48_BCAP_CODING_GSM_STD       = 0,
111 };
112
113 /* GSM 04.08 Bearer Capability: Radio Channel Requirements */
114 enum gsm48_bcap_rrq {
115         GSM48_BCAP_RRQ_FR_ONLY  = 1,
116         GSM48_BCAP_RRQ_DUAL_HR  = 2,
117         GSM48_BCAP_RRQ_DUAL_FR  = 3,
118 };
119
120 /* GSM 04.08 Bearer Capability: Rate Adaption */
121 enum gsm48_bcap_ra {
122         GSM48_BCAP_RA_NONE      = 0,
123         GSM48_BCAP_RA_V110_X30  = 1,
124         GSM48_BCAP_RA_X31       = 2,
125         GSM48_BCAP_RA_OTHER     = 3,
126 };
127
128 /* GSM 04.08 Bearer Capability: Signalling access protocol */
129 enum gsm48_bcap_sig_access {
130         GSM48_BCAP_SA_I440_I450 = 1,
131         GSM48_BCAP_SA_X21       = 2,
132         GSM48_BCAP_SA_X28_DP_IN = 3,
133         GSM48_BCAP_SA_X28_DP_UN = 4,
134         GSM48_BCAP_SA_X28_NDP   = 5,
135         GSM48_BCAP_SA_X32       = 6,
136 };
137
138 /* GSM 04.08 Bearer Capability: User Rate */
139 enum gsm48_bcap_user_rate {
140         GSM48_BCAP_UR_300       = 1,
141         GSM48_BCAP_UR_1200      = 2,
142         GSM48_BCAP_UR_2400      = 3,
143         GSM48_BCAP_UR_4800      = 4,
144         GSM48_BCAP_UR_9600      = 5,
145         GSM48_BCAP_UR_12000     = 6,
146         GSM48_BCAP_UR_1200_75   = 7,
147 };
148
149 /* GSM 04.08 Bearer Capability: Parity */
150 enum gsm48_bcap_parity {
151         GSM48_BCAP_PAR_ODD      = 0,
152         GSM48_BCAP_PAR_EVEN     = 2,
153         GSM48_BCAP_PAR_NONE     = 3,
154         GSM48_BCAP_PAR_ZERO     = 4,
155         GSM48_BCAP_PAR_ONE      = 5,
156 };
157
158 /* GSM 04.08 Bearer Capability: Intermediate Rate */
159 enum gsm48_bcap_interm_rate {
160         GSM48_BCAP_IR_8k        = 2,
161         GSM48_BCAP_IR_16k       = 3,
162 };
163
164 /* GSM 04.08 Bearer Capability: Transparency */
165 enum gsm48_bcap_transp {
166         GSM48_BCAP_TR_TRANSP    = 0,
167         GSM48_BCAP_TR_RLP       = 1,
168         GSM48_BCAP_TR_TR_PREF   = 2,
169         GSM48_BCAP_TR_RLP_PREF  = 3,
170 };
171
172 /* GSM 04.08 Bearer Capability: Modem Type */
173 enum gsm48_bcap_modem_type {
174         GSM48_BCAP_MT_NONE      = 0,
175         GSM48_BCAP_MT_V21       = 1,
176         GSM48_BCAP_MT_V22       = 2,
177         GSM48_BCAP_MT_V22bis    = 3,
178         GSM48_BCAP_MT_V23       = 4,
179         GSM48_BCAP_MT_V26ter    = 5,
180         GSM48_BCAP_MT_V32       = 6,
181         GSM48_BCAP_MT_UNDEF     = 7,
182         GSM48_BCAP_MT_AUTO_1    = 8,
183 };
184
185 /* GSM 04.08 Bearer Capability: Speech Version Indication */
186 enum gsm48_bcap_speech_ver {
187         GSM48_BCAP_SV_FR        = 0,
188         GSM48_BCAP_SV_HR        = 1,
189         GSM48_BCAP_SV_EFR       = 2,
190         GSM48_BCAP_SV_AMR_F     = 4,
191         GSM48_BCAP_SV_AMR_H     = 5,
192 };
193
194 /* Expanded fields from GSM TS 04.08, Table 10.5.102 */
195 struct gsm_mncc_bearer_cap {
196         int             transfer;       /* Information Transfer Capability */
197         int             mode;           /* Transfer Mode */
198         int             coding;         /* Coding Standard */
199         int             radio;          /* Radio Channel Requirement */
200         int             speech_ctm;     /* CTM text telephony indication */
201         int             speech_ver[8];  /* Speech version indication */
202         struct {
203                 enum gsm48_bcap_ra              rate_adaption;
204                 enum gsm48_bcap_sig_access      sig_access;
205                 int                             async;
206                 int                             nr_stop_bits;
207                 int                             nr_data_bits;
208                 enum gsm48_bcap_user_rate       user_rate;
209                 enum gsm48_bcap_parity          parity;
210                 enum gsm48_bcap_interm_rate     interm_rate;
211                 enum gsm48_bcap_transp          transp;
212                 enum gsm48_bcap_modem_type      modem_type;
213         } data;
214 };
215
216 struct gsm_mncc_number {
217         int             type;
218         int             plan;
219         int             present;
220         int             screen;
221         char            number[33];
222 };
223
224 struct gsm_mncc_cause {
225         int             location;
226         int             coding;
227         int             rec;
228         int             rec_val;
229         int             value;
230         int             diag_len;
231         char            diag[32];
232 };
233
234 struct gsm_mncc_useruser {
235         int             proto;
236         char            info[GSM_MAX_USERUSER + 1]; /* + termination char */
237 };
238
239 struct gsm_mncc_progress {
240         int             coding;
241         int             location;
242         int             descr;
243 };
244
245 struct gsm_mncc_facility {
246         int             len;
247         char            info[GSM_MAX_FACILITY];
248 };
249
250 struct gsm_mncc_ssversion {
251         int             len;
252         char            info[GSM_MAX_SSVERSION];
253 };
254
255 struct gsm_mncc_cccap {
256         int             dtmf;
257         int             pcp;
258 };
259
260 enum {
261         GSM_MNCC_BCAP_SPEECH    = 0,
262         GSM_MNCC_BCAP_UNR_DIG   = 1,
263         GSM_MNCC_BCAP_AUDIO     = 2,
264         GSM_MNCC_BCAP_FAX_G3    = 3,
265         GSM_MNCC_BCAP_OTHER_ITC = 5,
266         GSM_MNCC_BCAP_RESERVED  = 7,
267 };
268
269 enum {
270         GSM_LCHAN_NONE,
271         GSM_LCHAN_SDCCH,
272         GSM_LCHAN_TCH_F,
273         GSM_LCHAN_TCH_H,
274         GSM_LCHAN_UNKNOWN,
275         GSM_LCHAN_CCCH,
276         GSM_LCHAN_PDTCH,
277         _GSM_LCHAN_MAX
278 };
279
280 struct gsm_mncc {
281         /* context based information */
282         uint32_t        msg_type;
283         uint32_t        callref;
284
285         /* which fields are present */
286         uint32_t        fields;
287
288         /* data derived informations (MNCC_F_ based) */
289         struct gsm_mncc_bearer_cap      bearer_cap;
290         struct gsm_mncc_number          called;
291         struct gsm_mncc_number          calling;
292         struct gsm_mncc_number          redirecting;
293         struct gsm_mncc_number          connected;
294         struct gsm_mncc_cause           cause;
295         struct gsm_mncc_progress        progress;
296         struct gsm_mncc_useruser        useruser;
297         struct gsm_mncc_facility        facility;
298         struct gsm_mncc_cccap           cccap;
299         struct gsm_mncc_ssversion       ssversion;
300         struct  {
301                 int             sup;
302                 int             inv;
303         } clir;
304         int             signal;
305
306         /* data derived information, not MNCC_F based */
307         int             keypad;
308         int             more;
309         int             notify; /* 0..127 */
310         int             emergency;
311         char            imsi[16];
312
313         unsigned char   lchan_type;
314         unsigned char   lchan_mode;
315 };
316
317 struct gsm_data_frame {
318         uint32_t        msg_type;
319         uint32_t        callref;
320         unsigned char   data[0];
321 };
322
323 struct gsm_mncc_rtp {
324         u_int32_t       msg_type;
325         u_int32_t       callref;
326         u_int32_t       ip;
327         u_int16_t       port;
328         u_int32_t       payload_type;
329         u_int32_t       payload_msg_type;
330 };
331
332
333 #define MNCC_SOCK_VERSION       2
334 struct gsm_mncc_hello {
335         uint32_t        msg_type;
336         uint32_t        version;
337
338         /* send the sizes of the structs */
339         uint32_t        mncc_size;
340         uint32_t        data_frame_size;
341
342         /* send some offsets */
343         uint32_t        called_offset;
344         uint32_t        signal_offset;
345         uint32_t        emergency_offset;
346         uint32_t        lchan_type_offset;
347 };