blob: b02dc061573a36aec59a7d2beda2379a94409940 [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 Welte363cb0a2018-01-30 19:35:53 +0100211 var MgcpEndpoint ep;
212 if (f_mgcp_find_param(msg, "Z", ep) == false) {
213 setverdict(fail, "No SpecificEndpointName in MGCP response", msg);
214 self.stop;
215 }
216 return ep;
Harald Weltebb5a1212018-01-26 10:34:44 +0100217 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100218}
219
Harald Welte9601c812018-01-26 18:58:20 +0100220private function f_ep_table_init()
Harald Weltebb5a1212018-01-26 10:34:44 +0100221runs on MGCP_Emulation_CT {
Harald Welte9601c812018-01-26 18:58:20 +0100222 for (var integer i := 0; i < sizeof(MgcpEndpointTable); i := i+1) {
223 MgcpEndpointTable[i].comp_ref := null;
224 MgcpEndpointTable[i].endpoint := omit;
Harald Weltebb5a1212018-01-26 10:34:44 +0100225 }
226}
227
Daniel Willmann955627a2018-01-17 15:22:32 +0100228function main(MGCPOps ops, MGCP_conn_parameters p, charstring id) runs on MGCP_Emulation_CT {
Daniel Willmannfa870f52018-01-17 12:37:14 +0100229 var Result res;
230 g_mgcp_id := id;
Harald Welte9601c812018-01-26 18:58:20 +0100231 f_ep_table_init();
Daniel Willmann955627a2018-01-17 15:22:32 +0100232 f_expect_table_init();
Daniel Willmannfa870f52018-01-17 12:37:14 +0100233
234 map(self:MGCP, system:MGCP_CODEC_PT);
Harald Weltebb5a1212018-01-26 10:34:44 +0100235 if (p.callagent_udp_port == -1) {
236 res := MGCP_CodecPort_CtrlFunct.f_IPL4_listen(MGCP, p.mgw_ip, p.mgw_udp_port, { udp:={} });
237 } else {
238 res := MGCP_CodecPort_CtrlFunct.f_IPL4_connect(MGCP, p.callagent_ip, p.callagent_udp_port, p.mgw_ip, p.mgw_udp_port, -1, { udp:={} });
239 }
Harald Welte9220f632018-05-23 20:27:02 +0200240 if (not ispresent(res.connId)) {
241 setverdict(fail, "Could not connect MGCP socket, check your configuration");
242 self.stop;
243 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100244 g_mgcp_conn_id := res.connId;
Harald Weltebb5a1212018-01-26 10:34:44 +0100245
Daniel Willmannfa870f52018-01-17 12:37:14 +0100246 while (true) {
Daniel Willmann166bbb32018-01-17 15:28:04 +0100247 var MGCP_ConnHdlr vc_conn;
248 var ExpectCriteria crit;
249 var MGCP_RecvFrom mrf;
250 var MgcpMessage msg;
251 var MgcpCommand cmd;
252 var MgcpResponse resp;
Harald Welte9601c812018-01-26 18:58:20 +0100253 var MgcpEndpoint ep;
Daniel Willmann166bbb32018-01-17 15:28:04 +0100254
Daniel Willmannfa870f52018-01-17 12:37:14 +0100255 alt {
Daniel Willmann166bbb32018-01-17 15:28:04 +0100256 /* MGCP from client */
Harald Weltebb5a1212018-01-26 10:34:44 +0100257 [] MGCP_CLIENT.receive(MgcpResponse:?) -> value resp sender vc_conn {
Harald Welte9601c812018-01-26 18:58:20 +0100258 msg := {
259 response := resp
260 };
261 /* If this is the resposne to a pending CRCX, extract Endpoint and store in table */
262 if (f_trans_id_was_pending(resp.line.trans_id)) {
263 f_ep_table_add(vc_conn, f_mgcp_ep(msg));
264 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100265 /* Pass message through */
Harald Weltebb5a1212018-01-26 10:34:44 +0100266 /* TODO: check which ConnectionID client has allocated + store in table? */
Daniel Willmann166bbb32018-01-17 15:28:04 +0100267 MGCP.send(t_MGCP_Send(g_mgcp_conn_id, msg));
Daniel Willmannfa870f52018-01-17 12:37:14 +0100268 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100269 [] MGCP.receive(tr_MGCP_RecvFrom_R(?)) -> value mrf {
Harald Weltebb5a1212018-01-26 10:34:44 +0100270 if (p.callagent_udp_port == -1) {
271 /* we aren't yet connected to the remote side port, let's fix this */
272 p.callagent_udp_port := mrf.remPort;
Harald Welte930d0a72018-03-22 22:08:40 +0100273 res := 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:={} });
Harald Welte9220f632018-05-23 20:27:02 +0200274 if (not ispresent(res.connId)) {
275 setverdict(fail, "Could not connect MGCP socket, check your configuration");
276 self.stop;
277 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100278 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100279 if (ischosen(mrf.msg.command)) {
280 cmd := mrf.msg.command;
Harald Welte9601c812018-01-26 18:58:20 +0100281 if (f_ep_known(cmd.line.ep)) {
282 vc_conn := f_comp_by_ep(cmd.line.ep);
Harald Weltebb5a1212018-01-26 10:34:44 +0100283 MGCP_CLIENT.send(cmd) to vc_conn;
284 } else {
Harald Welte9601c812018-01-26 18:58:20 +0100285 if (cmd.line.verb == "CRCX") {
286 vc_conn := ops.create_cb.apply(cmd, id);
Harald Welte363cb0a2018-01-30 19:35:53 +0100287 if (not match(cmd.line.ep, t_MGCP_EP_wildcard)) {
288 /* non-wildcard EP, use directly */
Harald Welte9601c812018-01-26 18:58:20 +0100289 f_ep_table_add(vc_conn, cmd.line.ep);
290 } else {
291 /* add this transaction to list of pending transactions */
292 MgcpPendingTrans := MgcpPendingTrans & {cmd.line.trans_id};
293 }
294 MGCP_CLIENT.send(cmd) to vc_conn;
295 } else {
296 /* connectionless MGCP, i.e. messages without ConnectionId */
297 var template MgcpMessage r := ops.unitdata_cb.apply(mrf.msg);
298 if (isvalue(r)) {
299 MGCP.send(t_MGCP_Send(g_mgcp_conn_id, r));
300 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100301 }
302 }
Daniel Willmann166bbb32018-01-17 15:28:04 +0100303 } else {
304 setverdict(fail, "Received unexpected MGCP response: ", mrf.msg.response);
305 self.stop;
306 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100307 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100308 [] MGCP_PROC.getcall(MGCPEM_register:{?,?}) -> param(crit, vc_conn) {
Daniel Willmann955627a2018-01-17 15:22:32 +0100309 f_create_expect(crit, vc_conn);
Harald Weltee32ad992018-05-31 22:17:46 +0200310 MGCP_PROC.reply(MGCPEM_register:{crit, vc_conn}) to vc_conn;
Daniel Willmann955627a2018-01-17 15:22:32 +0100311 }
Harald Welte9601c812018-01-26 18:58:20 +0100312 [] MGCP_PROC.getcall(MGCPEM_delete_ep:{?,?}) -> param(ep, vc_conn) {
313 f_ep_table_del(vc_conn, ep);
Harald Weltee32ad992018-05-31 22:17:46 +0200314 MGCP_PROC.reply(MGCPEM_delete_ep:{ep, vc_conn}) to vc_conn;
Harald Welte9601c812018-01-26 18:58:20 +0100315 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100316 }
Harald Welte9601c812018-01-26 18:58:20 +0100317
Daniel Willmannfa870f52018-01-17 12:37:14 +0100318 }
319}
320
321/* "Expect" Handling */
322
323/* */
Daniel Willmann955627a2018-01-17 15:22:32 +0100324type record ExpectCriteria {
325 MgcpConnectionId connid optional,
326 MgcpEndpoint endpoint optional,
327 MgcpTransId transid optional
Daniel Willmannfa870f52018-01-17 12:37:14 +0100328}
329
330type record ExpectData {
331 ExpectCriteria crit optional,
Daniel Willmann955627a2018-01-17 15:22:32 +0100332 MGCP_ConnHdlr vc_conn
Daniel Willmannfa870f52018-01-17 12:37:14 +0100333}
334
Daniel Willmann955627a2018-01-17 15:22:32 +0100335signature MGCPEM_register(in ExpectCriteria cmd, in MGCP_ConnHdlr hdlr);
Harald Welte9601c812018-01-26 18:58:20 +0100336signature MGCPEM_delete_ep(in MgcpEndpoint ep, in MGCP_ConnHdlr hdlr);
Daniel Willmannfa870f52018-01-17 12:37:14 +0100337
338type port MGCPEM_PROC_PT procedure {
Harald Welte9601c812018-01-26 18:58:20 +0100339 inout MGCPEM_register, MGCPEM_delete_ep;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100340} with { extension "internal" };
341
342function f_get_mgcp_by_crit(ExpectCriteria crit)
343return template MgcpCommand {
Harald Weltebb5a1212018-01-26 10:34:44 +0100344 var template MgcpCommand ret := {
345 line := {
346 verb := ?,
347 trans_id := ?,
348 ep := ?,
349 ver := ?
350 },
351 params := *,
352 sdp := *
353 }
354 if (ispresent(crit.connid)) {
355 ret.params := { *, ts_MgcpParConnectionId(crit.connid), * };
356 }
357 if (ispresent(crit.endpoint)) {
358 ret.line.ep := crit.endpoint;
359 }
360 if (ispresent(crit.transid)) {
361 ret.line.trans_id := crit.transid;
362 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100363
364 return ret;
365}
366
367/* Function that can be used as create_cb and will usse the expect table */
368function ExpectedCreateCallback(MgcpCommand cmd, charstring id)
369runs on MGCP_Emulation_CT return MGCP_ConnHdlr {
370 var MGCP_ConnHdlr ret := null;
371 var template MgcpCommand mgcpcmd;
372 var integer i;
373
Harald Weltebb5a1212018-01-26 10:34:44 +0100374 for (i := 0; i < sizeof(MgcpExpectTable); i := i+1) {
375 if (not ispresent(MgcpExpectTable[i].crit)) {
Daniel Willmannfa870f52018-01-17 12:37:14 +0100376 continue;
377 }
Daniel Willmann955627a2018-01-17 15:22:32 +0100378 /* FIXME: Ignore criteria for now */
Harald Weltebb5a1212018-01-26 10:34:44 +0100379 mgcpcmd := f_get_mgcp_by_crit(MgcpExpectTable[i].crit);
380 if (match(cmd, mgcpcmd)) {
381 ret := MgcpExpectTable[i].vc_conn;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100382 /* Release this entry */
Harald Weltebb5a1212018-01-26 10:34:44 +0100383 MgcpExpectTable[i].crit := omit;
384 MgcpExpectTable[i].vc_conn := null;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100385 log("Found Expect[", i, "] for ", cmd, " handled at ", ret);
386 return ret;
Harald Weltebb5a1212018-01-26 10:34:44 +0100387 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100388 }
389 setverdict(fail, "Couldn't find Expect for CRCX", cmd);
390 return ret;
391}
392
393private function f_create_expect(ExpectCriteria crit, MGCP_ConnHdlr hdlr)
394runs on MGCP_Emulation_CT {
395 var integer i;
396
397 /* Check an entry like this is not already presnt */
Harald Weltebb5a1212018-01-26 10:34:44 +0100398 for (i := 0; i < sizeof(MgcpExpectTable); i := i+1) {
399 if (crit == MgcpExpectTable[i].crit) {
Daniel Willmannfa870f52018-01-17 12:37:14 +0100400 setverdict(fail, "Crit already present", crit);
401 self.stop;
402 }
403 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100404 for (i := 0; i < sizeof(MgcpExpectTable); i := i+1) {
405 if (not ispresent(MgcpExpectTable[i].crit)) {
406 MgcpExpectTable[i].crit := crit;
407 MgcpExpectTable[i].vc_conn := hdlr;
Daniel Willmannfa870f52018-01-17 12:37:14 +0100408 log("Created Expect[", i, "] for ", crit, " to be handled at ", hdlr);
409 return;
410 }
411 }
Harald Weltebb5a1212018-01-26 10:34:44 +0100412 setverdict(fail, "No space left in MgcpExpectTable")
413}
414
415/* client/conn_hdlr side function to use procedure port to create expect in emulation */
416function f_create_mgcp_expect(ExpectCriteria dest_number) runs on MGCP_ConnHdlr {
417 MGCP_PROC.call(MGCPEM_register:{dest_number, self}) {
418 [] MGCP_PROC.getreply(MGCPEM_register:{?,?}) {};
419 }
Daniel Willmannfa870f52018-01-17 12:37:14 +0100420}
421
Harald Welte9601c812018-01-26 18:58:20 +0100422/* client/conn_hdlr side function to use procedure port to create expect in emulation */
423function f_create_mgcp_delete_ep(MgcpEndpoint ep) runs on MGCP_ConnHdlr {
424 MGCP_PROC.call(MGCPEM_delete_ep:{ep, self}) {
425 [] MGCP_PROC.getreply(MGCPEM_delete_ep:{?,?}) {};
426 }
427}
428
429
Daniel Willmann955627a2018-01-17 15:22:32 +0100430private function f_expect_table_init()
431runs on MGCP_Emulation_CT {
432 var integer i;
Harald Weltebb5a1212018-01-26 10:34:44 +0100433 for (i := 0; i < sizeof(MgcpExpectTable); i := i + 1) {
434 MgcpExpectTable[i].crit := omit;
Daniel Willmann955627a2018-01-17 15:22:32 +0100435 }
436}
437
Harald Weltebb5a1212018-01-26 10:34:44 +0100438function DummyUnitdataCallback(MgcpMessage msg)
439runs on MGCP_Emulation_CT return template MgcpMessage {
440 log("Ignoring MGCP ", msg);
441 return omit;
442}
443
444
Daniel Willmannfa870f52018-01-17 12:37:14 +0100445}