SemysConnListener

01
typedef struct tagSemysConnListener
{
  HSemysListener mListenerHandle;
  SemysConnIdleProt mIdle;
  SemysConnStatusChangedProt mStatusChanged;
  SemysConnReceiveProt mReceive;
  SemysConnShutdownProt mShutdown;
} SemysConnListener;
02 Members:
  • mListenerHandle: An arbitrary handle that will be passed to the callbacks.
  • mIdle: Function pointer for the SemysConnIdleProt() callback.
  • mStatusChanged: Function pointer for the SemysConnStatusChangedProt() callback.
  • mReceive: Function pointer for the SemysConnReceiveProt() callback.
  • mShutdown: Function pointer for the SemysConnShutdownProt() callback.
03 The constant C_SEMYS_CONN_LISTENER_NULL initializes this structure to zero values.
04 This structure specifies the owner interface of a connection.
05 Reference: SemysTransporter.h
Implementation: Semys Library
See Also: Transporter Sub-System, SemysConnCreateProt(), SemysConnSetListenerProt()

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