Home
last modified time | relevance | path

Searched refs:ICMPv6NDOptSrcLLAddr (Results 1 – 2 of 2) sorted by relevance

/external/scapy/scapy/layers/
Dinet6.py109 p /= ICMPv6NDOptSrcLLAddr(lladdr=get_if_hwaddr(iface))
1685 class ICMPv6NDOptSrcLLAddr(_ICMPv6NDGuessPayload, Packet): class
1693 class ICMPv6NDOptDstLLAddr(ICMPv6NDOptSrcLLAddr):
3696 pkt /= ICMPv6NDOptSrcLLAddr(lladdr=src_lladdr)
3799 if ICMPv6NDOptSrcLLAddr in req:
3800 mac = req[ICMPv6NDOptSrcLLAddr].lladdr
3803 rep /= ICMPv6NDOptSrcLLAddr(lladdr=mac)
/external/scapy/test/
Dregression.uts2390 + ICMPv6NDOptSrcLLAddr Class Test
2392 = ICMPv6NDOptSrcLLAddr - Basic Instantiation
2393 raw(ICMPv6NDOptSrcLLAddr()) == b'\x01\x01\x00\x00\x00\x00\x00\x00'
2395 = ICMPv6NDOptSrcLLAddr - Instantiation with specific values
2396 raw(ICMPv6NDOptSrcLLAddr(len=2, lladdr="11:11:11:11:11:11")) == b'\x01\x02\x11\x11\x11\x11\x11\x11'
2398 = ICMPv6NDOptSrcLLAddr - Basic Dissection
2399 a=ICMPv6NDOptSrcLLAddr(b'\x01\x01\x00\x00\x00\x00\x00\x00')
2402 = ICMPv6NDOptSrcLLAddr - Instantiation with specific values
2403 a=ICMPv6NDOptSrcLLAddr(b'\x01\x02\x11\x11\x11\x11\x11\x11')