ixSetScheduledTransmitTime
ixSetScheduledTransmitTime - set the amount of transmit time for a port list
SYNOPSIS
ixSetScheduledTransmitTime portList duration
DESCRIPTION
Sets the maximum amount of time that a group of ports transmits. This is only valid for ports that support the portFeatureScheduledTxDuration feature, which may be tested with the port isValidFeature command.
ARGUMENTS
portList
(By reference) The list of ports in one of the following formats:
one2oneArray, one2manyArray, many2oneArray, many2manyArray
Or a reference to a list. For example, pl after
set pl {{1 1 1} {1 1 2} {1 1 3} {1 1 4}} -or-
set pl {1,1,1 1,1,2 1,1,3 1,1,4}
duration
(By value) The duration, in seconds, of the transmit time.
RETURNS
0
No error; the command was successfully delivered to the IxServer.
1
Error; the command was delivered to the IxServer but it could not process the message.
EXAMPLES
set portList {{1 1 1} {1 1 2}}
if [ixSetScheduledTransmitTime portList 20] {
ixPuts $::ixErrorInfo
}