CIRCNetwork.on315 Member

end of WHO

Syntax

object.on315(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function my_315 (e)
{
var matches;
if ("whoMatches" in this)
matches = this.whoMatches;
else
matches = 0;
if ("pendingWhoReply" in this)
this.display(getMsg(MSG_WHO_END, [e.params[2], matches]), e.code);
if ("whoUpdates" in this)
{
var userlist = document.getElementById("user-list");
for (var c in this.whoUpdates)
{
for (var i = 0; i < this.whoUpdates[c].length; i++)
{
var index = this.whoUpdates[c][i].chanListEntry.childIndex;
userlist.treeBoxObject.invalidateRow(index);
}
this.primServ.channels[c].updateUsers(this.whoUpdates[c]);
}
delete this.whoUpdates;
}
delete this.pendingWhoReply;
delete this.whoMatches;
}