aboutsummaryrefslogtreecommitdiffstats
path: root/mgw
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-11-18 13:00:57 +0100
committerHarald Welte <laforge@gnumonks.org>2017-11-18 13:00:57 +0100
commit45295c517f73025a5a3d7b4090abc3dfd9dbdf1a (patch)
treed329b99c9f8c365ff3b125109e3f79fabcd643fa /mgw
parentcbae9d109f6608e11dbc5064cab0ff578f310128 (diff)
MGCP_CodecPort: Update to IPL4asp R.29.A of 2017-Oct-17
This introduces a new ASP_ConnId_ReadyToRelease which we must handle in the translation port
Diffstat (limited to 'mgw')
-rw-r--r--mgw/MGCP_CodecPort.ttcn2
1 files changed, 2 insertions, 0 deletions
diff --git a/mgw/MGCP_CodecPort.ttcn b/mgw/MGCP_CodecPort.ttcn
index 6fedeeb1..06072af7 100644
--- a/mgw/MGCP_CodecPort.ttcn
+++ b/mgw/MGCP_CodecPort.ttcn
@@ -54,10 +54,12 @@ module MGCP_CodecPort {
type port MGCP_CODEC_PT message {
out MGCP_Send;
in MGCP_RecvFrom,
+ ASP_ConnId_ReadyToRelease,
ASP_Event;
} with { extension "user IPL4asp_PT
out(MGCP_Send -> ASP_Send:function(MGCP_to_IPL4_Send))
in(ASP_RecvFrom -> MGCP_RecvFrom: function(IPL4_to_MGCP_RecvFrom);
+ ASP_ConnId_ReadyToRelease -> ASP_ConnId_ReadyToRelease: simple;
ASP_Event -> ASP_Event: simple)"
}
}