Returns True if address belongs to limited scope multicast address space (239.0.0.0/8).
(str)
| 880 | |
| 881 | |
| 882 | def 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 | |
| 891 | def in4_isaddrllallnodes(str): |
nothing calls this directly
no test coverage detected
searching dependent graphs…