Class: Nmap::ScanTask

Inherits:
Struct
  • Object
show all
Defined in:
lib/nmap/scan_task.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, start_time, end_time, extrainfo = nil) ⇒ ScanTask

Creates a new ScanTask object.

Since:

  • 0.1.2



21
22
23
# File 'lib/nmap/scan_task.rb', line 21

def initialize(name,start_time,end_time,extrainfo=nil)
  super
end

Instance Attribute Details

#end_timeObject

Returns the value of attribute end_time



2
3
4
# File 'lib/nmap/scan_task.rb', line 2

def end_time
  @end_time
end

#extrainfoObject

Returns the value of attribute extrainfo



2
3
4
# File 'lib/nmap/scan_task.rb', line 2

def extrainfo
  @extrainfo
end

#nameObject

Returns the value of attribute name



2
3
4
# File 'lib/nmap/scan_task.rb', line 2

def name
  @name
end

#start_timeObject

Returns the value of attribute start_time



2
3
4
# File 'lib/nmap/scan_task.rb', line 2

def start_time
  @start_time
end

Instance Method Details

#durationInteger

The duration of the scan task.

Since:

  • 0.1.2



33
34
35
# File 'lib/nmap/scan_task.rb', line 33

def duration
  (self.end_time - self.start_time)
end

#to_sString

Converts the scan task to a String.

Since:

  • 0.1.2



45
46
47
# File 'lib/nmap/scan_task.rb', line 45

def to_s
  "#{self.start_time}: #{self.name} (#{self.extrainfo})"
end