Prints a one line summary of a packet.
(self, intern=0)
| 1705 | return found, ret, needed |
| 1706 | |
| 1707 | def summary(self, intern=0): |
| 1708 | # type: (int) -> str |
| 1709 | """Prints a one line summary of a packet.""" |
| 1710 | return self._do_summary()[1] |
| 1711 | |
| 1712 | def lastlayer(self, layer=None): |
| 1713 | # type: (Optional[Packet]) -> Packet |
no test coverage detected