Send the data in pBuffer over an ISCL connection, unsecured. This data is not encrypted and the message has no authentication code.
#include "ltdic.h"
L_LTDIC_API L_INT32 L_DicomSendNonSecureISCL(hNet, pBuffer, nBytes)
Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.
Pointer to a buffer that contains the data to be sent.
Size, in bytes, of the data to be sent.
Value | Meaning |
---|---|
DICOM_SUCCESS | Success. The data was dispatched to the ISCL network level. |
DICOM_ERROR_MEMORY | An error occurred. Refer to Return Codes. |
The non-secure send is the fastest method of transmitting data over an ISCL connection It is faster than the normal send/receive process and has no encryption and no message authentication codes.
Win32, x64.
L_INT DicomSendNonSecureISCLExample(L_VOID)
{
// suppose that pDicomNet is connected with an ISCL server
L_UCHAR uBuffer[2];
uBuffer[0] = 0;
uBuffer[1] = 1;
HDICOMNET hDicomNet = NULL;
//Suppose we have hDicomNet
return L_DicomSendNonSecureISCL(hDicomNet, uBuffer, 2);
}
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