daniel has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27118 )
Change subject: hnbgw: Match on connection IP/port in CRCX/MDCX
......................................................................
hnbgw: Match on connection IP/port in CRCX/MDCX
Change-Id: I465a677a29bf4e7a95245d480a241bd840eea75f
---
M hnbgw/HNBGW_Tests.ttcn
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/18/27118/1
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index 7de0959..e3aa293 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -800,7 +800,7 @@
interleave {
/* Expect MDCX with IP/port from RAB Assignment Response */
- [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
+ [] MGCP.receive(tr_MDCX(tr_SDP(pars.hnb_rtp_ip, pars.hnb_rtp_port))) -> value
mgcp_cmd {
log("MDCX1", mgcp_cmd);
/* Verify SDP of MDCX */
var SDP_Message sdp := valueof(ts_SDP(pars.mgw_conn_1.mgw_rtp_ip,
pars.mgw_conn_1.mgw_rtp_ip, hex2str(pars.mgcp_call_id), "42",
pars.mgw_conn_1.mgw_rtp_port,
@@ -809,7 +809,7 @@
MGCP.send(valueof(mgcp_rsp));
}
/* Handle CRCX for second leg of endpoint, answer with IP/port */
- [] MGCP.receive(tr_CRCX(pars.mgcp_ep)) -> value mgcp_cmd {
+ [] MGCP.receive(tr_CRCX(pars.mgcp_ep, tr_SDP(pars.cn_rtp_ip, pars.cn_rtp_port))) ->
value mgcp_cmd {
log("CRCX2", mgcp_cmd);
/* Verify SDP of CRCX */
var template MgcpResponse mgcp_rsp := f_handle_crcx(pars, mgcp_cmd);
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27118
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I465a677a29bf4e7a95245d480a241bd840eea75f
Gerrit-Change-Number: 27118
Gerrit-PatchSet: 1
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-MessageType: newchange