Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • drb/acl.rb

Parent

Methods

ACL::ACLEntry

An entry in an ACL

Public Class Methods

new(str) click to toggle source

Creates a new entry using str.

str may be "*" or "all" to match any address, an IP address string to match a specific address, an IP address mask per IPAddr, or one containing "*" to match part of an IPv4 address.

 
               # File drb/acl.rb, line 52
def initialize(str)
  if str == '*' or str == 'all'
    @pat = [:all]
  elsif str.include?('*')
    @pat = [:name, dot_pat(str)]
  else
    begin
      @pat = [:ip, IPAddr.new(str)]
    rescue ArgumentError
      @pat = [:name, dot_pat(str)]
    end
  end
end
            

Public Instance Methods

match(addr) click to toggle source

Matches addr against this entry.

 
               # File drb/acl.rb, line 93
def match(addr)
  case @pat[0]
  when :all
    true
  when :ip
    begin
      ipaddr = IPAddr.new(addr[3])
      ipaddr = ipaddr.ipv4_mapped if @pat[1].ipv6? && ipaddr.ipv4?
    rescue ArgumentError
      return false
    end
    (@pat[1].include?(ipaddr)) ? true : false
  when :name
    (@pat[1] =~ addr[2]) ? true : false
  else
    false
  end
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.