# File rbot/auth.rb, line 7 def Irc.netmaskmatch(globmask, netmask) regmask = globmask.gsub(/\*/, ".*?") return true if(netmask =~ /#{regmask}/) return false end