Searched refs:ICMPv6NDOptSrcLLAddr (Results 1 – 2 of 2) sorted by relevance
109 p /= ICMPv6NDOptSrcLLAddr(lladdr=get_if_hwaddr(iface))1685 class ICMPv6NDOptSrcLLAddr(_ICMPv6NDGuessPayload, Packet): class1693 class ICMPv6NDOptDstLLAddr(ICMPv6NDOptSrcLLAddr):3696 pkt /= ICMPv6NDOptSrcLLAddr(lladdr=src_lladdr)3799 if ICMPv6NDOptSrcLLAddr in req:3800 mac = req[ICMPv6NDOptSrcLLAddr].lladdr3803 rep /= ICMPv6NDOptSrcLLAddr(lladdr=mac)
2390 + ICMPv6NDOptSrcLLAddr Class Test2392 = ICMPv6NDOptSrcLLAddr - Basic Instantiation2393 raw(ICMPv6NDOptSrcLLAddr()) == b'\x01\x01\x00\x00\x00\x00\x00\x00'2395 = ICMPv6NDOptSrcLLAddr - Instantiation with specific values2396 raw(ICMPv6NDOptSrcLLAddr(len=2, lladdr="11:11:11:11:11:11")) == b'\x01\x02\x11\x11\x11\x11\x11\x11'2398 = ICMPv6NDOptSrcLLAddr - Basic Dissection2399 a=ICMPv6NDOptSrcLLAddr(b'\x01\x01\x00\x00\x00\x00\x00\x00')2402 = ICMPv6NDOptSrcLLAddr - Instantiation with specific values2403 a=ICMPv6NDOptSrcLLAddr(b'\x01\x02\x11\x11\x11\x11\x11\x11')