Package org.pcap4j.packet.IpV6ExtRoutingPacket

Examples of org.pcap4j.packet.IpV6ExtRoutingPacket.IpV6ExtRoutingHeader


    }
  }

  @Test
  public void testGetHeader() {
    IpV6ExtRoutingHeader h = packet.getHeader();
    assertEquals(nextHeader, h.getNextHeader());
    assertEquals(routingType, h.getRoutingType());
    assertEquals(segmentsLeft, h.getSegmentsLeft());
    assertEquals(data, h.getData());

    IpV6ExtRoutingPacket.Builder b = packet.getBuilder();
    IpV6ExtRoutingPacket p;

    b.hdrExtLen((byte)0);
View Full Code Here

TOP

Related Classes of org.pcap4j.packet.IpV6ExtRoutingPacket.IpV6ExtRoutingHeader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.