L_DicomSetMaxMessageLengthISCL

Summary

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.

Syntax

#include "ltdic.h"

L_LTDIC_API L_UINT32 L_DicomSetMaxMessageLengthISCL(hNet, nMsgLength)

Parameters

HDICOMNET hNet

Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.

L_UINT32 nMsgLength

The maximum message length to set.

Returns

Value Meaning
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

Platforms

Win32, x64.

See Also

Functions

Topics

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; 
} 
Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.