Searched refs:MIP6MH_BRR (Results 1 – 2 of 2) sorted by relevance
/external/scapy/scapy/layers/ |
D | inet6.py | 2969 class MIP6MH_BRR(_MobilityHeader): class 3067 if isinstance(other, MIP6MH_BRR): 3118 _mip6_mhtype2cls = { 0: MIP6MH_BRR,
|
/external/scapy/test/ |
D | regression.uts | 5189 = MIP6MH_BRR - Build (default values) 5190 raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/MIP6MH_BRR()) == b'`\x00\x00\x00\x00\x08\x87@ \x01\r… 5192 = MIP6MH_BRR - Build with specific values 5193 raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/MIP6MH_BRR(nh=0xff, res=0xee, res2=0xaaaa, options=[… 5195 = MIP6MH_BRR - Basic dissection 5198 a.nh == 135 and isinstance(b, MIP6MH_BRR) and b.nh == 59 and b.len == 0 and b.mhtype == 0 and b.res… 5200 = MIP6MH_BRR - Dissection with specific values 5203 a.nh == 135 and isinstance(b, MIP6MH_BRR) and b.nh == 0xff and b.len == 4 and b.mhtype == 0 and b.r… 5205 = MIP6MH_BRR / MIP6MH_BU / MIP6MH_BA hashret() and answers() 5210 a=IPv6(raw(IPv6(src=cn, dst=hoa)/MIP6MH_BRR()))
|