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

Function in6_ismaddr

scapy/utils6.py:787–793  ·  view source on GitHub ↗

Returns True if provided address in printable format belongs to allocated Multicast address space (ff00::/8).

(str)

Source from the content-addressed store, hash-verified

785
786
787def in6_ismaddr(str):
788 # type: (str) -> bool
789 """
790 Returns True if provided address in printable format belongs to
791 allocated Multicast address space (ff00::/8).
792 """
793 return in6_isincluded(str, 'ff00::', 8)
794
795
796def in6_ismnladdr(str):

Callers 6

routeMethod · 0.90
getmacbyip6Function · 0.90
hashretMethod · 0.90
answersMethod · 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…