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

Function in4_ismlsaddr

scapy/utils.py:882–888  ·  view source on GitHub ↗

Returns True if address belongs to limited scope multicast address space (239.0.0.0/8).

(str)

Source from the content-addressed store, hash-verified

880
881
882def in4_ismlsaddr(str):
883 # type: (str) -> bool
884 """
885 Returns True if address belongs to limited scope multicast address
886 space (239.0.0.0/8).
887 """
888 return in4_isincluded(str, "239.0.0.0", 8)
889
890
891def in4_isaddrllallnodes(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…