|
||||||||||
|
||||||||||
Other Library Functions |
function | tcp-destroy-service |
Available in:
Professional Enterprise |
Library: omtcp - TCP/IP client and server support
Include: omtcp.xin |
define external function TCPServiceClose value tcp-service Service
where
Use tcp-destroy-service to explicitly close a TCP service object, effectively detaching the program from the TCP port.
You must include the following line at the beginning of your OmniMark program:
include "omtcp.xin"
You can use tcp-destroy-service to destroy a sevice that has never been created or has already been destroyed.
Allowing the tcp-service variable to go out of scope has the same effect as using tcp-destroy-service.
No more client connection requests can be accepted once the connection is closed.
local tcp-service DemoService . . . set DemoService to tcp-create-service at 5600 . . . tcp-destroy-service DemoService
---- |