(self, pkt)
| 2300 | |
| 2301 | @ATMT.receive_condition(ESTABLISHED) |
| 2302 | def fin_received(self, pkt): |
| 2303 | if pkt[TCP].flags.F: |
| 2304 | raise self.LAST_ACK().action_parameters(pkt) |
| 2305 | |
| 2306 | @ATMT.action(fin_received) |
| 2307 | def send_finack(self, pkt): |
nothing calls this directly
no test coverage detected