Returns True if address belongs to link-local multicast address space (224.0.0.0/24)
(str)
| 858 | |
| 859 | |
| 860 | def 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 | |
| 869 | def in4_ismgladdr(str): |
nothing calls this directly
no test coverage detected
searching dependent graphs…