tcpip
(To be removed) Create TCPIP object
tcpip
will be removed. Use tcpclient
or tcpserver
instead. For more information on updating your code, see
Version History.
Description
creates a TCPIP object, t
= tcpip(RemoteHost
)t
, associated with remote host
RemoteHost
and the default remote port value of
80.
When the TCPIP object is created, its Status
property
value is closed
. When the object is connected to the host
with the fopen
function, the Status
property is configured to open
.
The default local host in multihome hosts is the system default. The
LocalPort
property defaults to a value of
[]
, which allows any free local port to be used.
LocalPort
is assigned when fopen
is
issued.
creates a TCPIP object with the specified remote port value
t
= tcpip(RemoteHost
,RemotePort
)RemotePort
.
creates a TCPIP object with the specified optional name-value pairs. If an
invalid property name or property value is specified, the object is not
created.t
= tcpip(___,Name,Value
)