blob: df8e4b44693037004db286a73c8edf6649d0e458 [file] [log] [blame]
Daniel Willmannfa870f52018-01-17 12:37:14 +01001module MGCP_Emulation {
2
Harald Weltea02515f2018-01-26 10:33:23 +01003/* MGCP Emulation, runs on top of MGCP_CodecPort. It multiplexes/demultiplexes
4 * the individual connections, so there can be separate TTCN-3 components handling
5 * each of the connections.
6 *
7 * The MGCP_Emulation.main() function processes MGCP primitives from the MGCP
8 * socket via the MGCP_CodecPort, and dispatches them to the per-connection components.
9 *
10 * For each new inbound connection, the MgcpOps.create_cb() is called. It can create
11 * or resolve a TTCN-3 component, and returns a component reference to which that inbound
12 * connection is routed/dispatched.
13 *
14 * If a pre-existing component wants to register to handle a future inbound call, it can
15 * do so by registering an "expect" with the expected destination phone number. This is e.g. useful
16 * if you are simulating BSC + MGCP, and first trigger a connection from BSC side in a
17 * component which then subsequently should also handle the MGCP emulation.
18 *
19 * Inbound Unit Data messages (such as are dispatched to the MgcpOps.unitdata_cb() callback,
20 * which is registered with an argument to the main() function below.
21 *
22 * (C) 2017-2018 by Harald Welte <laforge@gnumonks.org>
23 * (C) 2018 by sysmocom - s.f.m.c. GmbH, Author: Daniel Willmann
24 * All rights reserved.
25 *
26 * Released under the terms of GNU General Public License, Version 2 or
27 * (at your option) any later version.
28 */
29
Daniel Willmannfa870f52018-01-17 12:37:14 +010030import from MGCP_CodecPort all;
31import from MGCP_CodecPort_CtrlFunct all;
32import from MGCP_Types all;
33import from MGCP_Templates all;
34import from Osmocom_Types all;
35import from IPL4asp_Types all;
36
37type component MGCP_ConnHdlr {
38 port MGCP_Conn_PT MGCP;
Harald Weltebb5a1212018-01-26 10:34:44 +010039 /* procedure based port to register for incoming connections */
40 port MGCPEM_PROC_PT MGCP_PROC;
Daniel Willmannfa870f52018-01-17 12:37:14 +010041}
42
43/* port between individual per-connection components and this dispatcher */
44type port MGCP_Conn_PT message {
45 inout MgcpCommand, MgcpResponse;
46} with { extension "internal" };
47
Harald Welte9601c812018-01-26 18:58:20 +010048/* represents a single MGCP Endpoint */
49type record EndpointData {
Harald Weltebb5a1212018-01-26 10:34:44 +010050 MGCP_ConnHdlr comp_ref,
Harald Welte9601c812018-01-26 18:58:20 +010051 MgcpEndpoint endpoint optional
Harald Weltebb5a1212018-01-26 10:34:44 +010052};
Daniel Willmannfa870f52018-01-17 12:37:14 +010053
Harald Welte9601c812018-01-26 18:58:20 +010054/* pending CRCX with their transaction ID */
55type set of MgcpTransId MgcpTransIds;
56
Daniel Willmannfa870f52018-01-17 12:37:14 +010057type component MGCP_Emulation_CT {
58 /* Port facing to the UDP SUT */
59 port MGCP_CODEC_PT MGCP;
60 /* All MGCP_ConnHdlr MGCP ports connect here
61 * MGCP_Emulation_CT.main needs to figure out what messages
62 * to send where with CLIENT.send() to vc_conn */
Harald Weltebb5a1212018-01-26 10:34:44 +010063 port MGCP_Conn_PT MGCP_CLIENT;
Daniel Willmannfa870f52018-01-17 12:37:14 +010064 /* currently tracked connections */
Harald Welte9601c812018-01-26 18:58:20 +010065 var EndpointData MgcpEndpointTable[16];
66 var MgcpTransIds MgcpPendingTrans := {};
Daniel Willmannfa870f52018-01-17 12:37:14 +010067 /* pending expected CRCX */
Harald Weltebb5a1212018-01-26 10:34:44 +010068 var ExpectData MgcpExpectTable[8];
Daniel Willmannfa870f52018-01-17 12:37:14 +010069 /* procedure based port to register for incoming connections */
Harald Weltebb5a1212018-01-26 10:34:44 +010070 port MGCPEM_PROC_PT MGCP_PROC;
Daniel Willmannfa870f52018-01-17 12:37:14 +010071
72 var charstring g_mgcp_id;
Daniel Willmann166bbb32018-01-17 15:28:04 +010073 var integer g_mgcp_conn_id := -1;
Daniel Willmannfa870f52018-01-17 12:37:14 +010074}
75
76type function MGCPCreateCallback(MgcpCommand cmd, charstring id)
77runs on MGCP_Emulation_CT return MGCP_ConnHdlr;
78
Harald Weltebb5a1212018-01-26 10:34:44 +010079type function MGCPUnitdataCallback(MgcpMessage msg)
80runs on MGCP_Emulation_CT return template MgcpMessage;
81
Daniel Willmannfa870f52018-01-17 12:37:14 +010082type record MGCPOps {
Harald Weltebb5a1212018-01-26 10:34:44 +010083 MGCPCreateCallback create_cb,
84 MGCPUnitdataCallback unitdata_cb
Daniel Willmannfa870f52018-01-17 12:37:14 +010085}
86
87type record MGCP_conn_parameters {
Harald Weltebb5a1212018-01-26 10:34:44 +010088 HostName callagent_ip,
89 PortNumber callagent_udp_port,
90 HostName mgw_ip,
91 PortNumber mgw_udp_port
Daniel Willmannfa870f52018-01-17 12:37:14 +010092}
93
Daniel Willmann166bbb32018-01-17 15:28:04 +010094function tr_MGCP_RecvFrom_R(template MgcpMessage msg)
95runs on MGCP_Emulation_CT return template MGCP_RecvFrom {
96 var template MGCP_RecvFrom mrf := {
97 connId := g_mgcp_conn_id,
98 remName := ?,
99 remPort := ?,
100 locName := ?,
101 locPort := ?,
102 msg := msg
103 }
104 return mrf;
105}
106
Harald Welte9601c812018-01-26 18:58:20 +0100107private function f_ep_known(MgcpEndpoint ep)
Harald Weltebb5a1212018-01-26 10:34:44 +0100108runs on MGCP_Emulation_CT return boolean {
109 var integer i;
Harald Welte9601c812018-01-26 18:58:20 +0100110 for (i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
111 if (MgcpEndpointTable[i].endpoint == ep) {
Harald Weltebb5a1212018-01-26 10:34:44 +0100112 return true;
113 }
114 }
115 return false;
116}
117
118private function f_comp_known(MGCP_ConnHdlr client)
119runs on MGCP_Emulation_CT return boolean {
120 var integer i;
Harald Welte9601c812018-01-26 18:58:20 +0100121 for (i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
122 if (MgcpEndpointTable[i].comp_ref == client) {
Harald Weltebb5a1212018-01-26 10:34:44 +0100123 return true;
124 }
125 }
126 return false;
127}
128
Harald Welte9601c812018-01-26 18:58:20 +0100129private function f_comp_by_ep(MgcpEndpoint ep)
Harald Weltebb5a1212018-01-26 10:34:44 +0100130runs on MGCP_Emulation_CT return MGCP_ConnHdlr {
131 var integer i;
Harald Welte9601c812018-01-26 18:58:20 +0100132 for (i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
133 if (MgcpEndpointTable[i].endpoint == ep) {
134 return MgcpEndpointTable[i].comp_ref;
Harald Weltebb5a1212018-01-26 10:34:44 +0100135 }
136 }
Harald Welte9601c812018-01-26 18:58:20 +0100137 log("MGCP Endpoint Table not found by Endpoint", ep);
Harald Weltebb5a1212018-01-26 10:34:44 +0100138 setverdict(fail);
139 self.stop;
140}
141
Harald Welte9601c812018-01-26 18:58:20 +0100142private function f_ep_by_comp(MGCP_ConnHdlr client)
143runs on MGCP_Emulation_CT return MgcpEndpoint {
Harald Weltebb5a1212018-01-26 10:34:44 +0100144 var integer i;
Harald Welte9601c812018-01-26 18:58:20 +0100145 for (i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
146 if (MgcpEndpointTable[i].comp_ref == client) {
147 return MgcpEndpointTable[i].endpoint;
Harald Weltebb5a1212018-01-26 10:34:44 +0100148 }
149 }
Harald Welte9601c812018-01-26 18:58:20 +0100150 log("MGCP Endpoint Table not found by component ", client);
Harald Weltebb5a1212018-01-26 10:34:44 +0100151 setverdict(fail);
152 self.stop;
153}
154
Harald Welte9601c812018-01-26 18:58:20 +0100155private function f_ep_table_add(MGCP_ConnHdlr comp_ref, MgcpEndpoint ep)
156runs on MGCP_Emulation_CT {
157 var integer i;
158 for (i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
159 if (not isvalue(MgcpEndpointTable[i].endpoint)) {
160 MgcpEndpointTable[i].endpoint := ep;
161 MgcpEndpointTable[i].comp_ref := comp_ref;
162 return;
163 }
164 }
165 setverdict(fail, "MGCP Endpoint Table full!");
166 self.stop;
167}
168
169private function f_ep_table_del(MGCP_ConnHdlr comp_ref, MgcpEndpoint ep)
170runs on MGCP_Emulation_CT {
171 var integer i;
172 for (i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
173 if (MgcpEndpointTable[i].comp_ref == comp_ref and
174 MgcpEndpointTable[i].endpoint == ep) {
175 MgcpEndpointTable[i].endpoint := omit;
176 MgcpEndpointTable[i].comp_ref := null;
177 return;
178 }
179 }
180 setverdict(fail, "MGCP Endpoint Table: Couldn't find to-be-deleted entry!");
181 self.stop;
182}
183
184
185/* Check if the given transaction ID is a pending CRCX. If yes, return true + remove */
186private function f_trans_id_was_pending(MgcpTransId trans_id)
187runs on MGCP_Emulation_CT return boolean {
188 for (var integer i := 0; i < lengthof(MgcpPendingTrans); i := i+1) {
189 if (MgcpPendingTrans[i] == trans_id) {
190 /* Remove from list */
191 var MgcpTransIds OldPendingTrans := MgcpPendingTrans;
192 MgcpPendingTrans := {}
193 for (var integer j := 0; j < lengthof(OldPendingTrans); j := j+1) {
194 if (j != i) {
195 MgcpPendingTrans := MgcpPendingTrans & {OldPendingTrans[j]};
196 }
197 }
198 return true;
199 }
200 }
201 return false;
202}
203
Harald Weltebb5a1212018-01-26 10:34:44 +0100204/* TODO: move this to MGCP_Types? */
Harald Welte9601c812018-01-26 18:58:20 +0100205function f_mgcp_ep(MgcpMessage msg) return MgcpEndpoint {
Harald Weltebb5a1212018-01-26 10:34:44 +0100206 var MgcpParameterList params;
207 var integer i;
208 if (ischosen(msg.command)) {
Harald Welte9601c812018-01-26 18:58:20 +0100209 return msg.command.line.ep;
Harald Weltebb5a1212018-01-26 10:34:44 +0100210 } else {
Harald Welte9601c812018-01-26 18:58:20 +0100211 /* FIXME */
212 return "null@none";
Harald Weltebb5a1212018-01-26 10:34:44 +0100213 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100214}
215
Harald Welte9601c812018-01-26 18:58:20 +0100216private function f_ep_table_init()
Harald Weltebb5a1212018-01-26 10:34:44 +0100217runs on MGCP_Emulation_CT {
Harald Welte9601c812018-01-26 18:58:20 +0100218 for (var integer i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
219 MgcpEndpointTable[i].comp_ref := null;
220 MgcpEndpointTable[i].endpoint := omit;
Harald Weltebb5a1212018-01-26 10:34:44 +0100221 }
222}
223
Daniel Willmann955627a2018-01-17 15:22:32 +0100224function main(MGCPOps ops, MGCP_conn_parameters p, charstring id) runs on MGCP_Emulation_CT {
Daniel Willmannfa870f52018-01-17 12:37:14 +0100225 var Result res;
226 g_mgcp_id := id;
Harald Welte9601c812018-01-26 18:58:20 +0100227 f_ep_table_init();
Daniel Willmann955627a2018-01-17 15:22:32 +0100228 f_expect_table_init();
Daniel Willmannfa870f52018-01-17 12:37:14 +0100229
230 map(self:MGCP, system:MGCP_CODEC_PT);
Harald Weltebb5a1212018-01-26 10:34:44 +0100231 if (p.callagent_udp_port == -1) {
232 res := MGCP_CodecPort_CtrlFunct.f_IPL4_listen(MGCP, p.mgw_ip, p.mgw_udp_port, { udp:={} });
233 } else {
234 res := MGCP_CodecPort_CtrlFunct.f_IPL4_connect(MGCP, p.callagent_ip, p.callagent_udp_port, p.mgw_ip, p.mgw_udp_port, -1, { udp:={} });
235 }
236
Daniel Willmann166bbb32018-01-17 15:28:04 +0100237 g_mgcp_conn_id := res.connId;
Harald Weltebb5a1212018-01-26 10:34:44 +0100238
Daniel Willmannfa870f52018-01-17 12:37:14 +0100239 while (true) {
Daniel Willmann166bbb32018-01-17 15:28:04 +0100240 var MGCP_ConnHdlr vc_conn;
241 var ExpectCriteria crit;
242 var MGCP_RecvFrom mrf;
243 var MgcpMessage msg;
244 var MgcpCommand cmd;
245 var MgcpResponse resp;
Harald Welte9601c812018-01-26 18:58:20 +0100246 var MgcpEndpoint ep;
Daniel Willmann166bbb32018-01-17 15:28:04 +0100247
Daniel Willmannfa870f52018-01-17 12:37:14 +0100248 alt {
Daniel Willmann166bbb32018-01-17 15:28:04 +0100249 /* MGCP from client */
Harald Weltebb5a1212018-01-26 10:34:44 +0100250 [] MGCP_CLIENT.receive(MgcpResponse:?) -> value resp sender vc_conn {
Harald Welte9601c812018-01-26 18:58:20 +0100251 msg := {
252 response := resp
253 };
254 /* If this is the resposne to a pending CRCX, extract Endpoint and store in table */
255 if (f_trans_id_was_pending(resp.line.trans_id)) {
256 f_ep_table_add(vc_conn, f_mgcp_ep(msg));
257 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100258 /* Pass message through */
Harald Weltebb5a1212018-01-26 10:34:44 +0100259 /* TODO: check which ConnectionID client has allocated + store in table? */
Daniel Willmann166bbb32018-01-17 15:28:04 +0100260 MGCP.send(t_MGCP_Send(g_mgcp_conn_id, msg));
Daniel Willmannfa870f52018-01-17 12:37:14 +0100261 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100262 [] MGCP.receive(tr_MGCP_RecvFrom_R(?)) -> value mrf {
Harald Weltebb5a1212018-01-26 10:34:44 +0100263 if (p.callagent_udp_port == -1) {
264 /* we aren't yet connected to the remote side port, let's fix this */
265 p.callagent_udp_port := mrf.remPort;
266 MGCP_CodecPort_CtrlFunct.f_IPL4_connect(MGCP, p.callagent_ip, p.callagent_udp_port, p.mgw_ip, p.mgw_udp_port, g_mgcp_conn_id, { udp:={} });
267 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100268 if (ischosen(mrf.msg.command)) {
269 cmd := mrf.msg.command;
Harald Welte9601c812018-01-26 18:58:20 +0100270 if (f_ep_known(cmd.line.ep)) {
271 vc_conn := f_comp_by_ep(cmd.line.ep);
Harald Weltebb5a1212018-01-26 10:34:44 +0100272 MGCP_CLIENT.send(cmd) to vc_conn;
273 } else {
Harald Welte9601c812018-01-26 18:58:20 +0100274 if (cmd.line.verb == "CRCX") {
275 vc_conn := ops.create_cb.apply(cmd, id);
276 if (true /* non-wildcard EP */) {
277 f_ep_table_add(vc_conn, cmd.line.ep);
278 } else {
279 /* add this transaction to list of pending transactions */
280 MgcpPendingTrans := MgcpPendingTrans & {cmd.line.trans_id};
281 }
282 MGCP_CLIENT.send(cmd) to vc_conn;
283 } else {
284 /* connectionless MGCP, i.e. messages without ConnectionId */
285 var template MgcpMessage r := ops.unitdata_cb.apply(mrf.msg);
286 if (isvalue(r)) {
287 MGCP.send(t_MGCP_Send(g_mgcp_conn_id, r));
288 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100289 }
290 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100291 } else {
292 setverdict(fail, "Received unexpected MGCP response: ", mrf.msg.response);
293 self.stop;
294 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100295 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100296 [] MGCP_PROC.getcall(MGCPEM_register:{?,?}) -> param(crit, vc_conn) {
Daniel Willmann955627a2018-01-17 15:22:32 +0100297 f_create_expect(crit, vc_conn);
Harald Weltebb5a1212018-01-26 10:34:44 +0100298 MGCP_PROC.reply(MGCPEM_register:{crit, vc_conn});
Daniel Willmann955627a2018-01-17 15:22:32 +0100299 }
Harald Welte9601c812018-01-26 18:58:20 +0100300 [] MGCP_PROC.getcall(MGCPEM_delete_ep:{?,?}) -> param(ep, vc_conn) {
301 f_ep_table_del(vc_conn, ep);
302 MGCP_PROC.reply(MGCPEM_delete_ep:{ep, vc_conn});
303 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100304 }
Harald Welte9601c812018-01-26 18:58:20 +0100305
Daniel Willmannfa870f52018-01-17 12:37:14 +0100306 }
307}
308
309/* "Expect" Handling */
310
311/* */
Daniel Willmann955627a2018-01-17 15:22:32 +0100312type record ExpectCriteria {
313 MgcpConnectionId connid optional,
314 MgcpEndpoint endpoint optional,
315 MgcpTransId transid optional
Daniel Willmannfa870f52018-01-17 12:37:14 +0100316}
317
318type record ExpectData {
319 ExpectCriteria crit optional,
Daniel Willmann955627a2018-01-17 15:22:32 +0100320 MGCP_ConnHdlr vc_conn
Daniel Willmannfa870f52018-01-17 12:37:14 +0100321}
322
Daniel Willmann955627a2018-01-17 15:22:32 +0100323signature MGCPEM_register(in ExpectCriteria cmd, in MGCP_ConnHdlr hdlr);
Harald Welte9601c812018-01-26 18:58:20 +0100324signature MGCPEM_delete_ep(in MgcpEndpoint ep, in MGCP_ConnHdlr hdlr);
Daniel Willmannfa870f52018-01-17 12:37:14 +0100325
326type port MGCPEM_PROC_PT procedure {
Harald Welte9601c812018-01-26 18:58:20 +0100327 inout MGCPEM_register, MGCPEM_delete_ep;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100328} with { extension "internal" };
329
330function f_get_mgcp_by_crit(ExpectCriteria crit)
331return template MgcpCommand {
Harald Weltebb5a1212018-01-26 10:34:44 +0100332 var template MgcpCommand ret := {
333 line := {
334 verb := ?,
335 trans_id := ?,
336 ep := ?,
337 ver := ?
338 },
339 params := *,
340 sdp := *
341 }
342 if (ispresent(crit.connid)) {
343 ret.params := { *, ts_MgcpParConnectionId(crit.connid), * };
344 }
345 if (ispresent(crit.endpoint)) {
346 ret.line.ep := crit.endpoint;
347 }
348 if (ispresent(crit.transid)) {
349 ret.line.trans_id := crit.transid;
350 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100351
352 return ret;
353}
354
355/* Function that can be used as create_cb and will usse the expect table */
356function ExpectedCreateCallback(MgcpCommand cmd, charstring id)
357runs on MGCP_Emulation_CT return MGCP_ConnHdlr {
358 var MGCP_ConnHdlr ret := null;
359 var template MgcpCommand mgcpcmd;
360 var integer i;
361
Harald Weltebb5a1212018-01-26 10:34:44 +0100362 for (i := 0; i < sizeof(MgcpExpectTable); i := i+1) {
363 if (not ispresent(MgcpExpectTable[i].crit)) {
Daniel Willmannfa870f52018-01-17 12:37:14 +0100364 continue;
365 }
Daniel Willmann955627a2018-01-17 15:22:32 +0100366 /* FIXME: Ignore criteria for now */
Harald Weltebb5a1212018-01-26 10:34:44 +0100367 mgcpcmd := f_get_mgcp_by_crit(MgcpExpectTable[i].crit);
368 if (match(cmd, mgcpcmd)) {
369 ret := MgcpExpectTable[i].vc_conn;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100370 /* Release this entry */
Harald Weltebb5a1212018-01-26 10:34:44 +0100371 MgcpExpectTable[i].crit := omit;
372 MgcpExpectTable[i].vc_conn := null;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100373 log("Found Expect[", i, "] for ", cmd, " handled at ", ret);
374 return ret;
Harald Weltebb5a1212018-01-26 10:34:44 +0100375 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100376 }
377 setverdict(fail, "Couldn't find Expect for CRCX", cmd);
378 return ret;
379}
380
381private function f_create_expect(ExpectCriteria crit, MGCP_ConnHdlr hdlr)
382runs on MGCP_Emulation_CT {
383 var integer i;
384
385 /* Check an entry like this is not already presnt */
Harald Weltebb5a1212018-01-26 10:34:44 +0100386 for (i := 0; i < sizeof(MgcpExpectTable); i := i+1) {
387 if (crit == MgcpExpectTable[i].crit) {
Daniel Willmannfa870f52018-01-17 12:37:14 +0100388 setverdict(fail, "Crit already present", crit);
389 self.stop;
390 }
391 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100392 for (i := 0; i < sizeof(MgcpExpectTable); i := i+1) {
393 if (not ispresent(MgcpExpectTable[i].crit)) {
394 MgcpExpectTable[i].crit := crit;
395 MgcpExpectTable[i].vc_conn := hdlr;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100396 log("Created Expect[", i, "] for ", crit, " to be handled at ", hdlr);
397 return;
398 }
399 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100400 setverdict(fail, "No space left in MgcpExpectTable")
401}
402
403/* client/conn_hdlr side function to use procedure port to create expect in emulation */
404function f_create_mgcp_expect(ExpectCriteria dest_number) runs on MGCP_ConnHdlr {
405 MGCP_PROC.call(MGCPEM_register:{dest_number, self}) {
406 [] MGCP_PROC.getreply(MGCPEM_register:{?,?}) {};
407 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100408}
409
Harald Welte9601c812018-01-26 18:58:20 +0100410/* client/conn_hdlr side function to use procedure port to create expect in emulation */
411function f_create_mgcp_delete_ep(MgcpEndpoint ep) runs on MGCP_ConnHdlr {
412 MGCP_PROC.call(MGCPEM_delete_ep:{ep, self}) {
413 [] MGCP_PROC.getreply(MGCPEM_delete_ep:{?,?}) {};
414 }
415}
416
417
Daniel Willmann955627a2018-01-17 15:22:32 +0100418private function f_expect_table_init()
419runs on MGCP_Emulation_CT {
420 var integer i;
Harald Weltebb5a1212018-01-26 10:34:44 +0100421 for (i := 0; i < sizeof(MgcpExpectTable); i := i + 1) {
422 MgcpExpectTable[i].crit := omit;
Daniel Willmann955627a2018-01-17 15:22:32 +0100423 }
424}
425
Harald Weltebb5a1212018-01-26 10:34:44 +0100426function DummyUnitdataCallback(MgcpMessage msg)
427runs on MGCP_Emulation_CT return template MgcpMessage {
428 log("Ignoring MGCP ", msg);
429 return omit;
430}
431
432
Daniel Willmannfa870f52018-01-17 12:37:14 +0100433}