(self, pkt, x)
| 1019 | return super(SourceIP6Field, self).i2m(pkt, x) |
| 1020 | |
| 1021 | def i2h(self, pkt, x): |
| 1022 | # type: (Optional[Packet], Optional[Union[str, Net6]]) -> str |
| 1023 | if x is None and pkt is not None: |
| 1024 | x = self.__findaddr(pkt) |
| 1025 | return super(SourceIP6Field, self).i2h(pkt, x) |
| 1026 | |
| 1027 | |
| 1028 | class DestIP6Field(IP6Field, DestField): |
nothing calls this directly
no test coverage detected