CIRCChanMode.unlock Member

Unlocks the channel with a given key.

Syntax

object.unlock(k);

Arguments

ArgumentSummary
k

Returns

Remarks

See Also

Source Code

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