IServerListener :: OnServerConnRequest

01 This function will be called as callback from the server when an incoming connection is requested.
02

[C++] void OnServerConnRequest(Server *pServer, HSemysConn conn) = 0;
[C#] OnServerConnRequest(Server server, IntPtr conn);

03 Parameters:
  • pServer / server: The server calling this function.
  • conn: The connection handle of the incoming connection.
04 This callback is on behalf of the SemysServerConnRequestProt() callback.
05 Use Connection :: AttachProt() to accept the connection.
06 Global Lock: Required
Reference: net::semys
Implementation: Semys Architecture
See Also: Arch Transporter Sub-System, IServerListener, SemysServerConnRequestProt()

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