(self, pkt, x)
| 1013 | return pkt.route()[1] |
| 1014 | |
| 1015 | def i2m(self, pkt, x): |
| 1016 | # type: (Optional[Packet], Optional[Union[str, Net6]]) -> bytes |
| 1017 | if x is None and pkt is not None: |
| 1018 | x = self.__findaddr(pkt) |
| 1019 | return super(SourceIP6Field, self).i2m(pkt, x) |
| 1020 | |
| 1021 | def i2h(self, pkt, x): |
| 1022 | # type: (Optional[Packet], Optional[Union[str, Net6]]) -> str |
nothing calls this directly
no test coverage detected