Sha256: 6262b8be309dea832680b1eb3577f2b4394350702fc223ac27b6c594d029600b

Contents?: true

Size: 794 Bytes

Versions: 10

Compression:

Stored size: 794 Bytes

Contents

# frozen_string_literal: true

# 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 EAP
      # Extensible Authentication Protocol (EAP) - Flexible Authentication variable
      # Secure Tunneling, {https://tools.ietf.org/html/rfc4851 RFC 4851}
      #
      # {EAP::FAST} has following fields:
      # * {#flags} ({Types::Int8}),
      # * optionally {#message_length} ({Types::Int32}), if +#l?+ is +true+,
      # * {#body} ({Types::String}).
      # @author Sylvain Daubert
      # @since 2.1.4
      class FAST < TTLS
        update_field :type, default: 43
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
packetgen-3.3.1 lib/packetgen/header/eap/fast.rb
packetgen-3.3.0 lib/packetgen/header/eap/fast.rb
packetgen-3.2.2 lib/packetgen/header/eap/fast.rb
packetgen-3.2.1 lib/packetgen/header/eap/fast.rb
packetgen-3.2.0 lib/packetgen/header/eap/fast.rb
packetgen-3.1.8 lib/packetgen/header/eap/fast.rb
packetgen-3.1.7 lib/packetgen/header/eap/fast.rb
packetgen-3.1.6 lib/packetgen/header/eap/fast.rb
packetgen-3.1.5 lib/packetgen/header/eap/fast.rb
packetgen-3.1.4 lib/packetgen/header/eap/fast.rb