(self, pkt, x)
| 1034 | DestField.__init__(self, name, default) |
| 1035 | |
| 1036 | def i2m(self, pkt, x): |
| 1037 | # type: (Optional[Packet], Optional[Union[str, Net6]]) -> bytes |
| 1038 | if x is None and pkt is not None: |
| 1039 | x = self.dst_from_pkt(pkt) |
| 1040 | return IP6Field.i2m(self, pkt, x) |
| 1041 | |
| 1042 | def i2h(self, pkt, x): |
| 1043 | # type: (Optional[Packet], Optional[Union[str, Net6]]) -> str |
nothing calls this directly
no test coverage detected