SemysConnection

01
typedef struct tagSemysConnection
{
  ListEntry mListEntry;
  SemysTransportDescriptor *mpTransDesc;

  SemysConnListener mListener;
  SemysConnName mName;
} SemysConnection;
02 Members:
  • mListEntry: List link, used in the Transporter sub-system.
  • mpTransDesc: Reference to the transporter interface.
  • mListener: The listener (owner) interface of the connection.
  • mName: The name of the connection.
03 A transporter must have this structure as the first member of the specific (internal) connection structure.
04 Reference: SemysTransporter.h
Implementation: Semys Library
See Also: Transporter Sub-System, SemysTransConnCreateProt()

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