#include "ltdic.h"
L_INT32 LDicomNet::SendNonSecureISCL(pBuffer, nBytes)
Send the data in pBuffer over an ISCL connection, unsecured. This data is not encrypted and the message has no authentication code. This function is available in the PACS Imaging toolkits.
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.
Required DLLs and Libraries
Win32, x64
L_INT LDicomNet_SendNonSecureISCLExample(LMyDicomNet* m_pDicomNet)
{
L_INT nRet;
// LMyDicomNet is derived from LDicomNet
// suppose that pDicomNet is connected with an ISCL server
LMyDicomNet *pDicomNet;
pDicomNet = m_pDicomNet;
nRet = pDicomNet->SendNonSecureISCL(NULL, 0);
if(nRet != DICOM_SUCCESS)
return nRet;
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