SocketServergetclients()
Returns an array of all the current connected clients to this server port
Usage
ARRAY = SocketServergetclients(
port
)
Argument | Summary |
---|---|
port | the port that is listening to incoming requests on |
Calling
Supports named-parameter calling allowing you to use the function like:
SocketServergetclients( port=? );
Supports passing parameters as a structure using ArgumentCollection:
SocketServergetclients( ArgumentCollection={ port : ? } );
Extra
See SocketServerStart() for an example.