| LEADTOOLS DICOM C DLL Help > Function References > L_DicomSetMaxMessageLengthISCL | 
#include "ltdic.h"
L_LTDIC_API L_UINT32 L_DicomSetMaxMessageLengthISCL(hNet, nMsgLength)
| HDICOMNET hNet; | /* handle to an existing DICOM network */ | 
| L_UINT32 nMsgLength; | /* maximum message length */ | 
Sets the maximum message length that can be processed (sent and received) by the current entity. This function is available in the PACS Imaging toolkits.
| Parameter | Description | 
| hNet | Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function. | 
| nMsgLength | The maximum message length to set. | 
Returns
| DICOM_SUCCESS | Success. The maximum message length was set using the nMsgLength parameter. | 
| DICOM_ERROR_PARAMETER | An error occurred. This usually occurs if the nMsgLength was smaller than 136. (136 bytes is the maximum size of data in mutual authentication request packet.). Refer to Return Codes. | 
Required DLLs and Libraries
| For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application | 
Win32, x64.
See Also
Example
L_INT DicomSetMaxMessageLengthISCLExample(L_VOID)
{
   L_INT nRet;
   HDICOMNET hDicomNet;
   hDicomNet = L_DicomCreateNet (TEXT(""), DICOM_SECURE_ISCL);
   nRet = L_DicomSetMaxMessageLengthISCL(hDicomNet, 1048576);
   // size of the message accepted is at most 1 MB  or 1048576 bytes
   return nRet;
}