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

Function in4_ismlladdr

scapy/utils.py:860–866  ·  view source on GitHub ↗

Returns True if address belongs to link-local multicast address space (224.0.0.0/24)

(str)

Source from the content-addressed store, hash-verified

858
859
860def in4_ismlladdr(str):
861 # type: (str) -> bool
862 """
863 Returns True if address belongs to link-local multicast address
864 space (224.0.0.0/24)
865 """
866 return in4_isincluded(str, "224.0.0.0", 24)
867
868
869def in4_ismgladdr(str):

Callers

nothing calls this directly

Calls 1

in4_isincludedFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…