function
Library: TCP/IP client and server support (OMTCP legacy, OmniMark versions 6.0.2 - 7.0)
Include: omtcp.xin |
define external function tcp-disconnect value tcp-connection Connection
Argument definitions
Use tcp-disconnect to explicitly close a connection.
You must include the following line at the beginning of your OmniMark program:
include "omtcp.xin"
You can use tcp-disconnect to destroy a connection that has never been created or has already been destroyed.
Once a connection is closed then any read or write operation on an external source or output derived from it is in error.
Allowing the tcp-connection variable to go out of scope has the same effect as using tcp-disconnect.
It is good programming practice to have the scope of external sources and outputs derived from a TCP connection match that of the TCP connection itself. If this is done, then the programmer doesn't have to worry about the effect of the derived sources and outputs on the lifetime of the connection.
local tcp-connection Client set Client to tcp-connect on "123.123.123.45" at 5600 . . . tcp-disconnect Client