Package jpcap.packet

Class IPv6Option

java.lang.Object
jpcap.packet.IPv6Option
All Implemented Interfaces:
Serializable

public class IPv6Option extends Object implements Serializable
This class represents IPv6 option headers.
See Also:
  • Field Details

    • HOP_BY_HOP_OPTION

      public static final byte HOP_BY_HOP_OPTION
      Hop by hop option
      See Also:
    • ROUTING_OPTION

      public static final byte ROUTING_OPTION
      Routing option
      See Also:
    • FRAGMENT_OPTION

      public static final byte FRAGMENT_OPTION
      Fragment option
      See Also:
    • ESP_OPTION

      public static final byte ESP_OPTION
      Security payload option
      See Also:
    • AH_OPTION

      public static final byte AH_OPTION
      Authentication option
      See Also:
    • NONE_OPTION

      public static final byte NONE_OPTION
      No next option header
      See Also:
    • DESTINATION_OPTION

      public static final byte DESTINATION_OPTION
      Destination option
      See Also:
    • type

      public byte type
      Type
    • next_header

      public byte next_header
      Next header
    • hlen

      public byte hlen
      Header length
    • option

      public byte[] option
      Option
    • routing_type

      public byte routing_type
      Routing type (Routing option)
    • hop_left

      public byte hop_left
      Hop number left (Routing option)
    • addrs

      public InetAddress[] addrs
      Route addresses (Routing option)
    • offset

      public short offset
      Offset (Fragment option)
    • m_flag

      public boolean m_flag
      More flag (fragment option)
    • identification

      public int identification
      Identification (fragment option)
    • spi

      public int spi
      SPI (AH option)
    • sequence

      public int sequence
      Sequence number (AH option)
  • Constructor Details

    • IPv6Option

      public IPv6Option()