Returns True if provided address in printable format belongs to Unique local address space (fc00::/7).
(str)
| 760 | |
| 761 | |
| 762 | def in6_isuladdr(str): |
| 763 | # type: (str) -> bool |
| 764 | """ |
| 765 | Returns True if provided address in printable format belongs to |
| 766 | Unique local address space (fc00::/7). |
| 767 | """ |
| 768 | return in6_isincluded(str, 'fc00::', 7) |
| 769 | |
| 770 | # TODO : we should see the status of Unique Local addresses against |
| 771 | # global address space. |
no test coverage detected
searching dependent graphs…