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

LTDIC

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

Platforms

Win32, x64.

See Also

Functions:

L_DicomCreateNet, L_DicomSetDefaultSigningISCL, L_DicomSetDefaultEncryptionISCL, L_DicomSetAuthDataISCL, L_DicomSetMaxCommBlockLengthISCL, L_DicomSetMutualAuthAlgISCL, L_DicomSetMutualAuthKeyISCL, L_DicomSetIndexForMutualAuthISCL, L_DicomSetEncryptKeyISCL, L_DicomSetIndexForEncryptISCL

Topics:

DICOM Net: Sending Message

 

Sending and Receiving Messages

 

General Integrated Secure Communication Layer (ISCL) Information

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 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DICOM C API Help