CIRCNetwork.addServer Member
Syntax
object.addServer(host, port, isSecure, password);
Arguments
| Argument | Summary |
|---|---|
| host | |
| port | |
| isSecure | |
| password |
Returns
Remarks
See Also
Source Code
function net_addsrv(host, port, isSecure, password)
{
this.serverList.push(new CIRCServer(this, host, port, isSecure, password));
}