Returns True if address belongs to site-local multicast address space (ff05::/16). Site local address space has been deprecated. Function remains for historic reasons.
(str)
| 821 | |
| 822 | |
| 823 | def in6_ismsladdr(str): |
| 824 | # type: (str) -> bool |
| 825 | """ |
| 826 | Returns True if address belongs to site-local multicast address |
| 827 | space (ff05::/16). Site local address space has been deprecated. |
| 828 | Function remains for historic reasons. |
| 829 | """ |
| 830 | return in6_isincluded(str, 'ff05::', 16) |
| 831 | |
| 832 | |
| 833 | def in6_isaddrllallnodes(str): |
no test coverage detected
searching dependent graphs…