LDicomNet::GetServer

#include "ltdic.h"

LDicomNet *LDicomNet::GetServer(L_VOID)

Returns the DICOM Network object of the SCP. This function is available in the Medical Imaging Suite Toolkit.

Returns

The DICOM Network object of the SCP connected to the SCU.

Comments

The object returned is valid only if the calling object is an SCU. If the calling object is an SCP, this function will return NULL.

Required DLLs and Libraries

LTDIC

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

Platforms

Win32, x64

See Also

Functions:

LDicomNet::GetClient, LDicomNet::GetClientCount

Topics:

Working with DICOM Network Connections

Example

This example displays the number of clients connected to the some server.

L_INT LDicomNet_GetServerExample(LDicomNet *pNet) 
{ 
   L_TCHAR     szText[200] = {0}; 
   LDicomNet*  pServer = pNet->GetServer(); 
   if (pServer != NULL) 
   { 
      wsprintf(szText, TEXT("%u"), pServer->GetClientCount()); 
      OutputDebugString(szText); 
   } 
   return DICOM_SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DICOM C++ Class Library Help