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

Function in6_ismgladdr

scapy/utils6.py:805–811  ·  view source on GitHub ↗

Returns True if address belongs to global multicast address space (ff0e::/16).

(str)

Source from the content-addressed store, hash-verified

803
804
805def in6_ismgladdr(str):
806 # type: (str) -> bool
807 """
808 Returns True if address belongs to global multicast address
809 space (ff0e::/16).
810 """
811 return in6_isincluded(str, 'ff0e::', 16)
812
813
814def in6_ismlladdr(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…