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

Function in6_isuladdr

scapy/utils6.py:762–768  ·  view source on GitHub ↗

Returns True if provided address in printable format belongs to Unique local address space (fc00::/7).

(str)

Source from the content-addressed store, hash-verified

760
761
762def in6_isuladdr(str):
763 # type: (str) -> bool
764 """
765 Returns True if provided address in printable format belongs to
766 Unique local address space (fc00::/7).
767 """
768 return in6_isincluded(str, 'fc00::', 7)
769
770# TODO : we should see the status of Unique Local addresses against
771# global address space.

Callers 2

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…