(self, pkt)
| 2266 | |
| 2267 | @ATMT.receive_condition(ESTABLISHED) |
| 2268 | def incoming_data_received(self, pkt): |
| 2269 | if not isinstance(pkt[TCP].payload, (NoPayload, conf.padding_layer)): |
| 2270 | raise self.ESTABLISHED().action_parameters(pkt) |
| 2271 | |
| 2272 | @ATMT.action(incoming_data_received) |
| 2273 | def receive_data(self, pkt): |
nothing calls this directly
no test coverage detected