ixConnectToTclServer
ixConnectToTclServer - connect a Unix client to the IxTclServer
SYNOPSIS
ixConnectToTclServer serverName
DESCRIPTION
The ixConnectToTclServer command connects a Tcl Client running on a non-Windows workstation to the IxTclServer running on a chassis or Windows-based system.
ARGUMENTS
serverName
(By value) The name or IP address of the machine running the IxTclServer, called by value.
RETURNS
0
No Error, connection was established with the IxTclServer.
1
Error of any type.
EXAMPLES
package require IxTclHal
set host galaxy
if {[ixConnectToTclServer $host] != 0} {
ixPuts "Could not connect to Tcl Server on $host"
}
ixDisconnectTclServer