CIRCNetwork.on464 Member

464; "invalid or missing password", occurs as a reply to both OPER and sometimes initially during user registration.

Syntax

object.on464(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function my_464(e)
{
if (this.state == NET_CONNECTING)
{
// If we are in the process of connecting we are needing a login
// password, subtly different from after user registration.
this.display(MSG_IRC_464_LOGIN);
}
else
{
e.destMethod = "onUnknown";
e.destObject = this;
}
}