IdentServer.start Member

Syntax

object.start();

Returns

Remarks

See Also

Source Code

function ident_start()
{
if (this.listening)
return true;
if (!this.socket)
this.socket = new CBSConnection();
if (!this.socket.listen(113, this))
return false;
this.listening = true;
return true;
}