(self, f)
| 278 | self.outfp.flush() |
| 279 | |
| 280 | def match(self, f): |
| 281 | if ctx.options.flow_detail == 0: |
| 282 | return False |
| 283 | if not self.filter: |
| 284 | return True |
| 285 | elif flowfilter.match(self.filter, f): |
| 286 | return True |
| 287 | return False |
| 288 | |
| 289 | def response(self, f): |
| 290 | if self.match(f): |
no outgoing calls