CIRCServer.logout Member

Syntax

object.logout(reason);

Arguments

ArgumentSummary
reason

Returns

Remarks

See Also

Source Code

function serv_logout(reason)
{
if (reason == null || typeof reason == "undefined")
reason = this.DEFAULT_REASON;
this.quitting = true;
this.connection.sendData("QUIT :" +
fromUnicode(reason, this.parent) + "\n");
this.connection.disconnect();
}