Sha256: a4af004566d41af988c431190e5212dd663e7243dc69fe6b8ffc8abeb2b2cc75
Contents?: true
Size: 662 Bytes
Versions: 9
Compression:
Stored size: 662 Bytes
Contents
# coding: utf-8 # This file is part of PacketGen # See https://github.com/sdaubert/packetgen for more informations # Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net> # This program is published under MIT license. module PacketGen module Header class Dot11 # IEEE 802.11 management frame header # @author Sylvain Daubert class Management < Dot11 # @param [Hash] options # @see Base#initialize def initialize(options={}) super({type: 0}.merge!(options)) @applicable_fields -= %i(mac4 qos_ctrl ht_ctrl) define_applicable_fields end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems