LDicomNet::OnNonSecureReceivedISCL

#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.

Parameters

L_UINT32 nError

Error code. Refer to Return Codes.

L_UCHAR *pBuffer

Pointer to a buffer that contains the data that was received from the non-secure send process.

L_UINT32 nLength

The length of the received data, in bytes.

Returns

None.

Comments

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

Platforms

Win32, x64

See Also

Functions

Topics

Example

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 Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help