L_DicomSetMaxMessageLengthISCL

#include "ltdic.h"

L_UINT32 EXT_FUNCTION 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 Medical Suite 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

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

   HDICOMNET hDicomNet;
   hDicomNet = L_DicomCreateNet ("", DICOM_SECURE_ISCL);
   L_DicomSetMaxMessageLengthISCL(hDicomNet, 1048576);
   // size of the message accepted is at most 1 MB – or 1048576 bytes
}