SCTP::client_port¶
Description¶
Returns the SCTP port/service number of the specified client. This
command is equivalent to the command clientside { SCTP::remote_port
}.
Examples¶
when CLIENT_ACCEPTED {
if { [SCTP::client_port] > 1000 } {
pool slow_pool
}
else {
pool fast_pool
}
}