Returns True if address belongs to link-local multicast address space (ff02::/16)
(str)
| 812 | |
| 813 | |
| 814 | def in6_ismlladdr(str): |
| 815 | # type: (str) -> bool |
| 816 | """ |
| 817 | Returns True if address belongs to link-local multicast address |
| 818 | space (ff02::/16) |
| 819 | """ |
| 820 | return in6_isincluded(str, 'ff02::', 16) |
| 821 | |
| 822 | |
| 823 | def in6_ismsladdr(str): |
no test coverage detected
searching dependent graphs…