Listener

A reference to the "listening" connection of a remote thread

When a remote thread starts, it initially listens for new connection (similarly to bind in C). When a new connection is started, it creates a separate channel for communication (similar to accept in C). This newly-created channel is what RemoteAPI wraps. The channel / link / connection to the original listener, which is the only one able to establish a connection, is what this data structure wraps.

struct Listener (
API
) {}

Members

Variables

data
BindChn data;

Internal data, do not use

Meta