MGCP_CodecPort: Receive MGCP command or response

If we act as MGW we need to accept MGCP commands sent to us as well

Change-Id: I895cfb688a2923b278828f5ae918c73fda18636d
This commit is contained in:
Daniel Willmann 2018-01-17 13:25:58 +01:00
parent 38cbd6dfbe
commit b381ca2e85
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ module MGCP_CodecPort {
pout.msg := dec_MgcpMessage(oct2char(pin.msg)); - see
https://www.eclipse.org/forums/index.php/t/1088893/
*/
pout.msg := { response := dec_MgcpResponse(oct2char(pin.msg)) };
pout.msg := dec_MgcpMessage(oct2char(pin.msg));
} with { extension "prototype(fast)" };
private function MGCP_to_IPL4_Send(in MGCP_Send pin, out ASP_Send pout) {