IPA_CodecPort: Wrap f_IPL4_setGetMsgLen function
diff --git a/library/IPA_CodecPort_CtrlFunct.ttcn b/library/IPA_CodecPort_CtrlFunct.ttcn
index c0e7de6..88ab01f 100644
--- a/library/IPA_CodecPort_CtrlFunct.ttcn
+++ b/library/IPA_CodecPort_CtrlFunct.ttcn
@@ -40,5 +40,13 @@
     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
+  );
+
+
 }
 
diff --git a/library/IPA_CodecPort_CtrlFunctDef.cc b/library/IPA_CodecPort_CtrlFunctDef.cc
index 6d47305..fa84087 100644
--- a/library/IPA_CodecPort_CtrlFunctDef.cc
+++ b/library/IPA_CodecPort_CtrlFunctDef.cc
@@ -51,6 +51,16 @@
   {
     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);
+  }
+
+
 }