Class Dot11InterworkingElement

  • All Implemented Interfaces:
    java.io.Serializable

    public final class Dot11InterworkingElement
    extends Dot11InformationElement
    IEEE802.11 Interworking element
            1              1              1            0 or 2         0 or 6
     +--------------+--------------+--------------+--------------+--------------+
     |  Element ID  |   Length     |Access Network|  Venue Info  |    HESSID    |
     |              |              |Options       |  (optional)  |  (optional)  |
     +--------------+--------------+--------------+--------------+--------------+
     Element ID: 107
    
     Access Network Options field:
         B0       B1       B2       B3       B4       B5       B6       B7
     +--------+--------+--------+--------+--------+--------+--------+--------+
     |        Access Network Type        |Internet|  ASRA  |  ESR   |  UESA  |
     +--------+--------+--------+--------+--------+--------+--------+--------+
     
    The Interworking element contains information about the interworking service capabilities of a STA.
    Since:
    pcap4j 1.7.0
    Author:
    Kaito Yamada
    See Also:
    IEEE802.11, Serialized Form
    • Method Detail

      • isInternetAccessible

        public boolean isInternetAccessible()
        Returns:
        true if the internet field is set to 1; false otherwise.
      • isAsra

        public boolean isAsra()
        Returns:
        true if the ASRA field is set to 1; false otherwise.
      • isEsr

        public boolean isEsr()
        Returns:
        true if the ESR field is set to 1; false otherwise.
      • isUesa

        public boolean isUesa()
        Returns:
        true if the UESA field is set to 1; false otherwise.
      • getVenueInfo

        public Dot11VenueInfo getVenueInfo()
        Returns:
        venueInfo. May be null.
      • getHessid

        public byte[] getHessid()
        Returns:
        hessid. May be null.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • toString

        public java.lang.String toString​(java.lang.String indent)
        Parameters:
        indent - indent
        Returns:
        the string representation of this object.