(self, pkt, x)
| 1040 | return IP6Field.i2m(self, pkt, x) |
| 1041 | |
| 1042 | def i2h(self, pkt, x): |
| 1043 | # type: (Optional[Packet], Optional[Union[str, Net6]]) -> str |
| 1044 | if x is None and pkt is not None: |
| 1045 | x = self.dst_from_pkt(pkt) |
| 1046 | return super(DestIP6Field, self).i2h(pkt, x) |
| 1047 | |
| 1048 | |
| 1049 | class ByteField(Field[int, int]): |
nothing calls this directly
no test coverage detected