Returns True if provided address in printable format belongs to _allocated_ link-local unicast address space (fe80::/10)
(str)
| 740 | |
| 741 | |
| 742 | def in6_islladdr(str): |
| 743 | # type: (str) -> bool |
| 744 | """ |
| 745 | Returns True if provided address in printable format belongs to |
| 746 | _allocated_ link-local unicast address space (fe80::/10) |
| 747 | """ |
| 748 | return in6_isincluded(str, 'fe80::', 10) |
| 749 | |
| 750 | |
| 751 | def in6_issladdr(str): |
no test coverage detected
searching dependent graphs…