#include "ltdic.h"
L_LTDIC_API L_UINT32 L_DicomGetCommBlockLengthISCL(hNet)
Returns the communication block length agreed upon during mutual authentication.
Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.
The communication block length agreed upon during mutual authentication.
Using a block size that is too small or too big could impact performance.
Required DLLs and Libraries
Win32, x64.
L_INT DicomGetCommBlockLengthISCLExample(HWND hWnd)
{
HDICOMNET hDicomNet;
L_INT nRet;
hDicomNet = L_DicomCreateNet (TEXT(""), DICOM_SECURE_ISCL);
nRet = L_DicomSetMaxCommBlockLengthISCL (hDicomNet, 8160);
if (nRet != DICOM_SUCCESS)
return nRet;
// size of the blocks sent to network layer will be 8192 bytes (a 32-byte header is added)
nRet = L_DicomConnect (hDicomNet, NULL, 0, TEXT("127.0.0.1"), 2761);
if (nRet != DICOM_SUCCESS)
return nRet;
// connect to a server running on local computer at port 2761
int nCommBlock = L_DicomGetCommBlockLengthISCL(hDicomNet);
L_TCHAR str[50];
wsprintf(str, TEXT("Negotiated communication block size is %d"), nCommBlock);
MessageBox(hWnd, str, TEXT(""), MB_OK);
return DICOM_SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document