Sha256: f530087d899a9ec54b64ff00f7a24fbf9bfbb3d5184d17ae3a4cf999b8470ad0
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# coding: utf-8 # frozen_string_literal: true # This file is part of PacketGen # See https://github.com/lemontree55/packetgen for more informations # Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net> # Copyright (C) 2024 LemonTree55 <lenontree@proton.me> # This program is published under MIT license. module PacketGen module Header # Logical-Link Control header # # A LLC header consists of: # * a {#dsap} ({BinStruct::Int8}), # * a {#ssap} ({BinStruct::Int8}), # * a {#control} ({BinStruct::Int8}), # * and a {#body} (a {BinStruct::String} or another {Base} class). # @author Sylvain Daubert # @since 1.4.0 class LLC < Base # @!attribute dsap # @return [Integer] 8-bit dsap value define_attr :dsap, BinStruct::Int8 # @!attribute ssap # @return [Integer] 8-bit ssap value define_attr :ssap, BinStruct::Int8 # @!attribute control # @return [Integer] 8-bit control value define_attr :control, BinStruct::Int8 # @!attribute body # @return [BinStruct::String,Header::Base] define_attr :body, BinStruct::String end self.add_class LLC Dot11::Data.bind LLC, type: 2, wep?: false # Sub-Network Access Protocol # # A SNAP header consists of: # * a {#oui} ({BinStruct::OUI}), # * a {#proto_id} ({BinStruct::Int16}), # * and a {#body} (a {BinStruct::String} or another {Base} class). # @author Sylvain Daubert # @since 1.4.0 class SNAP < Base # @!attribute oui # @return [BinStruct::OUI] define_attr :oui, BinStruct::OUI # @!attribute proto_id # @return [Integer] 16-bit protocol id define_attr :proto_id, BinStruct::Int16 # @!attribute body # @return [BinStruct::String,Header::Base] define_attr :body, BinStruct::String end self.add_class SNAP LLC.bind SNAP, dsap: 170, ssap: 170, control: 3 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
packetgen-4.0.0 | lib/packetgen/header/llc.rb |