(self, pkt, x)
| 972 | return inet_pton(socket.AF_INET6, plain_str(x)) |
| 973 | |
| 974 | def m2i(self, pkt, x): |
| 975 | # type: (Optional[Packet], bytes) -> str |
| 976 | return inet_ntop(socket.AF_INET6, x) |
| 977 | |
| 978 | def any2i(self, pkt, x): |
| 979 | # type: (Optional[Packet], Optional[str]) -> str |
nothing calls this directly
no test coverage detected