Syntax
<Result> = SocketAccept(<Socket name>)
<Result>: Character string
- Name of the communication channel to the client socket that requested the connection. This name will be used by all the other Socket functions to specify this communication channel.
- Empty string ("") if an error occurred. For more details about the error, use the ErrorInfo function.
<Socket name>: Character string (with quotes)
Name of the server socket that accepts the connection.
Remarks
The communication channel opened by
SocketAccept must be closed by
SocketClose.