CIRCChanMode.lock Member

Locks the channel with a given key.

Syntax

object.lock(k);

Arguments

ArgumentSummary
k

Returns

Remarks

See Also

Source Code

function chanm_lock (k)
{
this.parent.parent.sendData("MODE " + this.parent.encodedName + " +k " +
k + "\n");
return true;
}