(self, pkt, x)
| 930 | return super(SourceIPField, self).i2m(pkt, x) |
| 931 | |
| 932 | def i2h(self, pkt, x): |
| 933 | # type: (Optional[Packet], Optional[Union[str, Net]]) -> str |
| 934 | if x is None and pkt is not None: |
| 935 | x = self.__findaddr(pkt) |
| 936 | return super(SourceIPField, self).i2h(pkt, x) |
| 937 | |
| 938 | |
| 939 | class IP6Field(Field[Optional[Union[str, Net6]], bytes]): |
nothing calls this directly
no test coverage detected