#include "ltdic.h"
virtual L_VOID LDicomNet::OnNonSecureReceivedISCL(nError, pBuffer, nLength)
This function is called after data sent in non-secure mode is received. This function is available in the PACS Imaging toolkits.
Error code. Refer to Return Codes.
Pointer to a buffer that contains the data that was received from the non-secure send process.
The length of the received data, in bytes.
None.
After data is received in a non-secure send process, this function is called. The data from pBuffer will be freed after this callback function returns.
Required DLLs and Libraries
Win32, x64
L_VOID LMyDicomNet::OnNonSecureReceivedISCL(L_VOID *pBuffer, L_UINT32 nLength)
{
UNREFERENCED_PARAMETER(nLength);
UNREFERENCED_PARAMETER(pBuffer);
CString strMsg;
L_UINT lPeerPort;
L_TCHAR szPeerAddress[100];
GetPeerInfo(szPeerAddress, 100, &lPeerPort);
strMsg.Format(TEXT("*** OnNonSecureReceivedISCL***\nPeer[%s]\n "), szPeerAddress);
AfxMessageBox(strMsg);
};
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