#include "ltdic.h"
L_VOID pEXT_CALLBACK Your_Function(hNet, nError, pUserData)
This function is called when an ISCL or TLS secured connection is successfully established. This function is available in the PACS Imaging.
Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.
Error code. For a list of possible values, refer to Return Codes.
Void pointer that you can use to pass one or more additional parameters that the callback function needs. To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID *. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure. If the additional parameters are not needed, you can pass NULL in this parameter.
None.
This function is called after the ISCL or TLS connection is successfully established. From this moment until the connection is closed, an application can securely send and receive data.
Required DLLs and Libraries
Win32, x64
#define MAX_STRING_LEN 1024
L_VOID EXT_CALLBACK exOnSecureLinkReady(HDICOMNET hNet, L_UINT32 nError, L_VOID *pUserData)
{
UNREFERENCED_PARAMETER(pUserData);
L_INT nRet;
L_TCHAR szMsg[MAX_STRING_LEN];
L_TCHAR szTmp[MAX_STRING_LEN];
char PeerId[128];
L_UINT32 nPeerLength = sizeof(PeerId);
if(nError == DICOM_SUCCESS)
{
nRet = L_DicomGetPeerAuthDataISCL (hNet, PeerId, &nPeerLength);
if (nRet != DICOM_SUCCESS)
MessageBox(NULL, TEXT("Error Inside Callback Function"), TEXT("exOnSecureLinkReady"), MB_OK);
wsprintf(szMsg,TEXT("ISCLLink ready, peer identified by %s"), PeerId);
MessageBox(NULL, szMsg, TEXT(""), MB_OK);
}
else
{
wsprintf(szTmp, TEXT("%sError[%d]\n"), szMsg, nError);
lstrcpy(szMsg, szTmp);
MessageBox(NULL, szMsg, TEXT(""), MB_OK);
}
};
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