SemysConnTransmitProt

01 Requests to transmit data over an established connection.
02

void SemysConnTransmitProt(HSemysConn conn, SemysDataBuffer *pList);

03 Parameters:
  • conn: The connection that should transmit the data.
  • pList: A list of SemysDataBuffer structures with the data.
04 Calling this function for a connection that is not established will ignore the data.
05 The data specified by the list of SemysDataBuffer structures will be extracted and stored internally. The caller keeps the ownership of the buffers and may free the memory immediately.
06 For an established connection, transmitting data will either cause it to be received at the connection partner or a SemysConnStatusChanged() callback follows, specifying disconnected state.
07 Global Lock: Required
Reference: SemysTransporter.h
Implementation: Semys Library
See Also: Transporter Sub-System, SemysConnReceiveProt(), SemysConnStatusChangedProt()

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