Return the IPv4-mapped IPv6 address. Returns: The IPv4-mapped IPv6 address per RFC 4291.
(self)
| 1401 | |
| 1402 | @property |
| 1403 | def ipv6_mapped(self): |
| 1404 | """Return the IPv4-mapped IPv6 address. |
| 1405 | |
| 1406 | Returns: |
| 1407 | The IPv4-mapped IPv6 address per RFC 4291. |
| 1408 | |
| 1409 | """ |
| 1410 | return IPv6Address(f'::ffff:{self}') |
| 1411 | |
| 1412 | |
| 1413 | class IPv4Interface(IPv4Address): |
nothing calls this directly
no test coverage detected