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

Function in6_ismlladdr

scapy/utils6.py:814–820  ·  view source on GitHub ↗

Returns True if address belongs to link-local multicast address space (ff02::/16)

(str)

Source from the content-addressed store, hash-verified

812
813
814def in6_ismlladdr(str):
815 # type: (str) -> bool
816 """
817 Returns True if address belongs to link-local multicast address
818 space (ff02::/16)
819 """
820 return in6_isincluded(str, 'ff02::', 16)
821
822
823def in6_ismsladdr(str):

Callers 4

routeMethod · 0.90
read_routes6Function · 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…