Sha256: 014bb3a90810537b16615c3fcad0d62308fe5b26ef2bbb9ab1e1013d02e89691

Contents?: true

Size: 1.06 KB

Versions: 9

Compression:

Stored size: 1.06 KB

Contents

#
# Copyright (C) 2008-2013 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.
#


module MonkeyPatch
  module Integer
    module Validators
      # nw_tos (IP ToS) value consists of 8 bits, of which only the 6 high-order
      # bits belong to DSCP, the 2 low-order bits must be zero.
      def valid_nw_tos?
        unsigned_8bit? and self % 4 == 0
      end
    end
  end
end


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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
trema-0.4.6 ruby/trema/monkey-patch/integer/validators.rb
trema-0.4.5 ruby/trema/monkey-patch/integer/validators.rb
trema-0.4.4 ruby/trema/monkey-patch/integer/validators.rb
trema-0.4.3 ruby/trema/monkey-patch/integer/validators.rb
trema-0.4.2 ruby/trema/monkey-patch/integer/validators.rb
trema-0.4.1 ruby/trema/monkey-patch/integer/validators.rb
trema-0.4.0 ruby/trema/monkey-patch/integer/validators.rb
trema-0.3.21 ruby/trema/monkey-patch/integer/validators.rb
trema-0.3.20 ruby/trema/monkey-patch/integer/validators.rb