Add ASP_ConnId_ReadyToRelease in all translation ports using IPL4asp

This is required after update to IPL4asp R.29.A of 2017-Oct-17
This commit is contained in:
Harald Welte 2017-11-19 09:29:51 +01:00
parent cda8b9add1
commit 04d74cdcde
3 changed files with 8 additions and 0 deletions

View File

@ -29,10 +29,12 @@ module GTP_CodecPort {
type port GTPC_PT message {
out Gtp1cUnitdata;
in Gtp1cUnitdata,
ASP_ConnId_ReadyToRelease,
ASP_Event;
} with { extension "user IPL4asp_PT
out(Gtp1cUnitdata -> ASP_SendTo: function(f_enc_Gtp1cUD))
in(ASP_RecvFrom -> Gtp1cUnitdata: function(f_dec_Gtp1cUD);
ASP_ConnId_ReadyToRelease -> ASP_ConnId_ReadyToRelease: simple;
ASP_Event -> ASP_Event: simple)" }
private function f_enc_Gtp1cUD(in Gtp1cUnitdata in_ud, out ASP_SendTo out_ud) {
@ -55,10 +57,12 @@ module GTP_CodecPort {
type port GTPU_PT message {
out Gtp1uUnitdata;
in Gtp1uUnitdata,
ASP_ConnId_ReadyToRelease,
ASP_Event;
} with { extension "user IPL4asp_PT
out(Gtp1uUnitdata -> ASP_SendTo: function(f_enc_Gtp1uUD))
in(ASP_RecvFrom -> Gtp1uUnitdata: function(f_dec_Gtp1uUD);
ASP_ConnId_ReadyToRelease -> ASP_ConnId_ReadyToRelease: simple;
ASP_Event -> ASP_Event: simple)" }
function f_enc_Gtp1uUD(in Gtp1uUnitdata in_ud, out ASP_SendTo out_ud) {

View File

@ -51,10 +51,12 @@ module NS_CodecPort {
type port NS_CODEC_PT message {
out NS_Send;
in NS_RecvFrom,
ASP_ConnId_ReadyToRelease,
ASP_Event;
} with { extension "user IPL4asp_PT
out(NS_Send -> ASP_Send: function(NS_to_IPL4_Send))
in(ASP_RecvFrom -> NS_RecvFrom: function(IPL4_to_NS_RecvFrom);
ASP_ConnId_ReadyToRelease -> ASP_ConnId_ReadyToRelease: simple;
ASP_Event -> ASP_Event: simple)"
}
}

View File

@ -67,10 +67,12 @@ module GSMTAP_PortType {
out GSMTAP_SendTo
in GSMTAP_RecvFrom
in ASP_Event
in ASP_ConnId_ReadyToRelease
} with { extension "user IPL4asp_PT
out(GSMTAP_Send -> ASP_Send: function(GSMTAP_to_IPL4_Send);
GSMTAP_SendTo -> ASP_SendTo: function(GSMTAP_to_IPL4_SendTo))
in(ASP_RecvFrom -> GSMTAP_RecvFrom: function(IPL4_to_GSMTAP);
ASP_ConnId_ReadyToRelease -> ASP_ConnId_ReadyToRelease: simple;
ASP_Event -> ASP_Event: simple)" }
}