Prints a table using a function that returns for each packet its head column value, head row value and displayed value # noqa: E501 ex: p.make_table(lambda x:(x[IP].dst, x[TCP].dport, x[TCP].sprintf("%flags%"))
(self, *args, **kargs)
| 248 | name="filtered %s" % self.listname) |
| 249 | |
| 250 | def make_table(self, *args, **kargs): |
| 251 | # type: (Any, Any) -> Optional[str] |
| 252 | """Prints a table using a function that returns for each packet its head column value, head row value and displayed value # noqa: E501 |
| 253 | ex: p.make_table(lambda x:(x[IP].dst, x[TCP].dport, x[TCP].sprintf("%flags%")) """ # noqa: E501 |
| 254 | return make_table(self.res, *args, **kargs) |
| 255 | |
| 256 | def make_lined_table(self, *args, **kargs): |
| 257 | # type: (Any, Any) -> Optional[str] |
no test coverage detected