CIRCUser.getHostMask Member
Syntax
object.getHostMask(pfx);
Arguments
Argument | Summary |
---|---|
pfx |
Returns
Remarks
See Also
Source Code
function usr_hostmask (pfx)
{
pfx = (typeof pfx != "undefined") ? pfx : "*!" + this.name + "@*.";
var idx = this.host.indexOf(".");
if (idx == -1)
return pfx + this.host;
return (pfx + this.host.substr(idx + 1, this.host.length));
}