library/MNCC_Types: fix sdp in tr_MNCC_*

Make sure it is * everywhere, not "". Partially fix the SIP tests, where
tr_MNCC_RTP_CONNECT did not match anymore:

13:15:27.516387 5 SIP_Tests.ttcn:219 Message enqueued on MNCC from SIP_Test-MNCC(3) @MNCC_Types.MNCC_PDU : {
    msg_type := MNCC_RTP_CONNECT (517),
    u := {
        rtp := {
            callref := 5001,
            ip := 0,
            rtp_port := 0,
            payload_type := 0,
            payload_msg_type := 0,
            sdp := "0"
        }
    }
} id 3
13:15:27.516604 5 SIP_Tests.ttcn:221 Matching on port MNCC .u.rtp.sdp := "0" with "" unmatched: First message in the queue does not match the template:

Related: OS#4282
Fixes: 06b859ca31 ("msc: add sdp to MNCC")
Change-Id: Ic7a2df0b6faeaa88682880f816518618ced79a7e
This commit is contained in:
Oliver Smith 2019-11-28 13:40:37 +01:00
parent e25773980b
commit 8b7f5d13a3
1 changed files with 3 additions and 3 deletions

View File

@ -1478,7 +1478,7 @@ template MNCC_PDU tr_MNCC_REL_req(template uint32_t call_id, template MNCC_cause
imsi := ?,
lchan_type := 0,
lchan_mode := 0,
sdp := ""
sdp := *
}
}
}
@ -1856,7 +1856,7 @@ template MNCC_PDU tr_MNCC_USERINFO_ind(template uint32_t call_id := ?, template
imsi := "",
lchan_type := 0,
lchan_mode := 0,
sdp := ""
sdp := *
}
}
}
@ -1977,7 +1977,7 @@ template MNCC_PDU tr_MNCC_RTP_CONNECT(template uint32_t call_id,
rtp_port := rtp_port,
payload_type := pt,
payload_msg_type := 0,
sdp := ""
sdp := *
}
}
}