Class: Nmap::OSMatch
- Inherits:
-
Struct
- Object
- Struct
- Nmap::OSMatch
- Defined in:
- lib/nmap/os_match.rb
Overview
Represents a match for a specific OS.
Instance Attribute Summary collapse
-
#accuracy ⇒ Object
Returns the value of attribute accuracy.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#to_s ⇒ String
Converts the OS match to a String.
Instance Attribute Details
#accuracy ⇒ Object
Returns the value of attribute accuracy
5 6 7 |
# File 'lib/nmap/os_match.rb', line 5 def accuracy @accuracy end |
#name ⇒ Object
Returns the value of attribute name
5 6 7 |
# File 'lib/nmap/os_match.rb', line 5 def name @name end |
Instance Method Details
#to_s ⇒ String
Converts the OS match to a String.
13 14 15 |
# File 'lib/nmap/os_match.rb', line 13 def to_s "#{self.name} (#{self.accuracy}%)" end |