(self, pkt)
| 629 | |
| 630 | @ATMT.receive_condition(NEGOTIATED) |
| 631 | def received_negotiate_smb2(self, pkt): |
| 632 | if SMB2_Negotiate_Protocol_Request in pkt: |
| 633 | raise self.NEGOTIATED().action_parameters(pkt) |
| 634 | |
| 635 | @ATMT.action(received_negotiate_smb2) |
| 636 | def on_negotiate_smb2(self, pkt): |
nothing calls this directly
no test coverage detected