SemysServerListener

01
typedef struct tagSemysServerListener
{
  HSemysListener mListenerHandle;
  SemysServerStatusChangedProt mStatusChanged;
  SemysServerConnRequestProt mConnRequest;
  SemysServerShutdownProt mShutdown;
} SemysServerListener;
02 Members:
  • mListenerHandle: An arbitrary handle that will be passed to the callbacks.
  • mStatusChanged: Function pointer for the SemysServerStatusChangedProt() callback.
  • mConnRequest: Function pointer for the SemysServerConnRequestProt() callback.
  • mShutdown: Function pointer for the SemysServerShutdownProt() callback.
03 The constant C_SEMYS_SERVER_LISTENER_NULL initializes this structure to zero values.
04 This structure specifies the owner interface of a server.
05 Reference: SemysTransporter.h
Implementation: Semys Library
See Also: Transporter Sub-System, SemysServerCreateProt(), SemysServerSetListenerProt()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.