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

Function in6_ismsladdr

scapy/utils6.py:823–830  ·  view source on GitHub ↗

Returns True if address belongs to site-local multicast address space (ff05::/16). Site local address space has been deprecated. Function remains for historic reasons.

(str)

Source from the content-addressed store, hash-verified

821
822
823def in6_ismsladdr(str):
824 # type: (str) -> bool
825 """
826 Returns True if address belongs to site-local multicast address
827 space (ff05::/16). Site local address space has been deprecated.
828 Function remains for historic reasons.
829 """
830 return in6_isincluded(str, 'ff05::', 16)
831
832
833def in6_isaddrllallnodes(str):

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…