class MetasploitDataModels::Search::Operator::IPAddress

Operator for `inet` columns in a PostgreSQL database, which operates on formatted values using {MetasploitDataModels::Search::Operation::IPAddress}.

Attributes

attribute[RW]

@!attribute [r] attribute

The attribute on `Metasploit::Model::Search::Operator::Base#klass` that is searchable.

@return [Symbol] the attribute name
name[RW]

@!attribute [r] attribute

The attribute on `Metasploit::Model::Search::Operator::Base#klass` that is searchable.

@return [Symbol] the attribute name

Public Instance Methods

operation_class_name() click to toggle source

The class used for `Metasploit::Model::Search::Operator::Single#operate_on`.

@return [String] `'MetasploitDataModels::Search::Operation::IPAddress'`

# File app/models/metasploit_data_models/search/operator/ip_address.rb, line 30
def operation_class_name
  @operation_class_name ||= 'MetasploitDataModels::Search::Operation::IPAddress'
end