Returns True if address belongs to global multicast address space (ff0e::/16).
(str)
| 803 | |
| 804 | |
| 805 | def in6_ismgladdr(str): |
| 806 | # type: (str) -> bool |
| 807 | """ |
| 808 | Returns True if address belongs to global multicast address |
| 809 | space (ff0e::/16). |
| 810 | """ |
| 811 | return in6_isincluded(str, 'ff0e::', 16) |
| 812 | |
| 813 | |
| 814 | def in6_ismlladdr(str): |
no test coverage detected
searching dependent graphs…