IPA_CodecPort: Wrap f_IPL4_setGetMsgLen function

This commit is contained in:
Harald Welte 2017-11-29 11:46:24 +01:00
parent 92e9816df8
commit 26595451b3
2 changed files with 19 additions and 1 deletions

View File

@ -40,5 +40,13 @@ module IPA_CodecPort_CtrlFunct {
out UserData userData
) return Result;
external function f_IPL4_setGetMsgLen(
inout IPA_CODEC_PT portRef,
in ConnectionId id,
inout f_IPL4_getMsgLen f,
in ro_integer msgLenArgs
);
}

View File

@ -51,6 +51,16 @@ namespace IPA__CodecPort__CtrlFunct {
{
return f__IPL4__PROVIDER__getUserData(portRef, connId, userData);
}
void f__IPL4__setGetMsgLen(
IPA__CodecPort::IPA__CODEC__PT& portRef,
const IPL4asp__Types::ConnectionId& connId,
Socket__API__Definitions::f__getMsgLen& f,
const Socket__API__Definitions::ro__integer& msgLenArgs)
{
return f__IPL4__PROVIDER__setGetMsgLen(portRef, connId, f, msgLenArgs);
}
}