• Home
  • Raw
  • Download

Lines Matching refs:IPv6ExtHdrSegmentRouting

1686 ########### IPv6ExtHdrSegmentRouting Class ###########################
1688 = IPv6ExtHdrSegmentRouting Class - default - build & dissect
1689 s = raw(IPv6()/IPv6ExtHdrSegmentRouting()/UDP())
1693 assert(UDP in p and IPv6ExtHdrSegmentRouting in p)
1694 assert(len(p[IPv6ExtHdrSegmentRouting].addresses) == 1 and len(p[IPv6ExtHdrSegmentRouting].tlv_obje…
1696 = IPv6ExtHdrSegmentRouting Class - empty lists - build & dissect
1698 s = raw(IPv6()/IPv6ExtHdrSegmentRouting(addresses=[], tlv_objects=[])/UDP())
1702 assert(UDP in p and IPv6ExtHdrSegmentRouting in p)
1703 assert(len(p[IPv6ExtHdrSegmentRouting].addresses) == 0 and len(p[IPv6ExtHdrSegmentRouting].tlv_obje…
1705 = IPv6ExtHdrSegmentRouting Class - addresses list - build & dissect
1707 s = raw(IPv6()/IPv6ExtHdrSegmentRouting(addresses=["::1", "::2", "::3"])/UDP())
1711 assert(UDP in p and IPv6ExtHdrSegmentRouting in p)
1712 assert(len(p[IPv6ExtHdrSegmentRouting].addresses) == 3 and len(p[IPv6ExtHdrSegmentRouting].tlv_obje…
1714 = IPv6ExtHdrSegmentRouting Class - TLVs list - build & dissect
1716 s = raw(IPv6()/IPv6ExtHdrSegmentRouting(addresses=[], tlv_objects=[IPv6ExtHdrSegmentRoutingTLV()])/…
1720 assert(TCP in p and IPv6ExtHdrSegmentRouting in p)
1721 assert(len(p[IPv6ExtHdrSegmentRouting].addresses) == 0 and len(p[IPv6ExtHdrSegmentRouting].tlv_obje…
1722 assert(isinstance(p[IPv6ExtHdrSegmentRouting].tlv_objects[1], IPv6ExtHdrSegmentRoutingTLVPadding))
1724 = IPv6ExtHdrSegmentRouting Class - both lists - build & dissect
1726 s = raw(IPv6()/IPv6ExtHdrSegmentRouting(addresses=["::1", "::2", "::3"], tlv_objects=[IPv6ExtHdrSeg…
1730 assert(ICMPv6EchoRequest in p and IPv6ExtHdrSegmentRouting in p)
1731 assert(len(p[IPv6ExtHdrSegmentRouting].addresses) == 3 and len(p[IPv6ExtHdrSegmentRouting].tlv_obje…
1733 = IPv6ExtHdrSegmentRouting Class - UDP pseudo-header checksum - build & dissect
1735 s= raw(IPv6(src="fc00::1", dst="fd00::42")/IPv6ExtHdrSegmentRouting(addresses=["fd00::42", "fc13::1…