MCPcopy Create free account
hub / github.com/secdev/scapy / in6_islladdr

Function in6_islladdr

scapy/utils6.py:742–748  ·  view source on GitHub ↗

Returns True if provided address in printable format belongs to _allocated_ link-local unicast address space (fe80::/10)

(str)

Source from the content-addressed store, hash-verified

740
741
742def in6_islladdr(str):
743 # type: (str) -> bool
744 """
745 Returns True if provided address in printable format belongs to
746 _allocated_ link-local unicast address space (fe80::/10)
747 """
748 return in6_isincluded(str, 'fe80::', 10)
749
750
751def in6_issladdr(str):

Callers 5

routeMethod · 0.90
parse_optionsMethod · 0.90
in6_getscopeFunction · 0.85

Calls 1

in6_isincludedFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…