Sha256: c0716bcfd59246266809b4c064b7db7fa6e69d9c0abf56f628d8d556adf0f7f4

Contents?: true

Size: 1.42 KB

Versions: 13

Compression:

Stored size: 1.42 KB

Contents

#
# Copyright (C) 2008-2012 NEC Corporation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#


require "trema/action"
require "trema/monkey-patch/integer"


module Trema
  #
  # @abstract The base class of {SetTransportSrcPort} and {SetTransportDstPort} action.
  #
  class SetTransportPort < Action
    # @return [Fixnum] the value of attribute {#port_number}
    attr_reader :port_number


    #
    # @private
    #
    def initialize port_number
      error_message = "TCP/UDP port must be an unsigned 16-bit integer"
      unless port_number.is_a?( Integer )
        raise TypeError, error_message
      end
      unless port_number.unsigned_16bit?
        raise ArgumentError, error_message
      end
      @port_number = port_number
    end
  end
end


### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End:

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
trema-0.3.9 ruby/trema/set-transport-port.rb
trema-0.3.8 ruby/trema/set-transport-port.rb
trema-0.3.7 ruby/trema/set-transport-port.rb
trema-0.3.6 ruby/trema/set-transport-port.rb
trema-0.3.5 ruby/trema/set-transport-port.rb
trema-0.3.4 ruby/trema/set-transport-port.rb
trema-0.3.3 ruby/trema/set-transport-port.rb
trema-0.3.2 ruby/trema/set-transport-port.rb
trema-0.3.1 ruby/trema/set-transport-port.rb
trema-0.3.0 ruby/trema/set-transport-port.rb
trema-0.2.8 ruby/trema/set-transport-port.rb
trema-0.2.7 ruby/trema/set-transport-port.rb
trema-0.2.6 ruby/trema/set-transport-port.rb