module Nmapr::Options::SCTP

Public Instance Methods

sctp(type = :init) click to toggle source
# File lib/nmapr/options/sctp.rb, line 4
def sctp(type = :init)
  case type
  when :init
    add_argument("-sY")
  when :cookie_echo
    add_argument("-sZ")
  end
end