L_DicomIsAssociated

#include "ltdic.h"

L_LTDIC_API L_BOOL L_DicomIsAssociated(hNet)

Indicates whether the specified connection has been associated. This function is available in the PACS Imaging Toolkit.

Parameters

HDICOMNET hNet

A DICOM Network handle. This is the handle created by calling L_DicomCreateNet.

Returns

Value Meaning
TRUE The specified connection has been associated.
FALSE The specified connection has not been associated.

Comments

A connection has been associated if the SCP of the connection has called L_DicomSendAssociateAccept and the RECEIVEASSOCIATEACCEPTCALLBACK was generated on the SCU of the connection. If this exchange has occurred, this function will return TRUE, otherwise it will return FALSE.

For more information on creating an associated connection, refer to Creating a DICOM Association.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

This example displays the association status of a connection.

L_INT DicomIsAssociatedExample(HDICOMNET hNet) 
{ 
   if (L_DicomIsAssociated(hNet) != FALSE) 
      MessageBox(NULL, TEXT("associated"), TEXT("Notice"), MB_OK); 
   else 
      MessageBox(NULL, TEXT("not associate"), TEXT("Notice"), MB_OK); 
 
   return DICOM_SUCCESS; 
} 

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.