SocketServerstop()
Shutdowns an existing server that has been setup
Usage
BOOLEAN = SocketServerstop(
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:
SocketServerstop( port=? );
Supports passing parameters as a structure using ArgumentCollection:
SocketServerstop( ArgumentCollection={
port : ?
} );
Extra
See SocketServerStart() for an example.
