(self, pkt)
| 366 | |
| 367 | @ATMT.receive_condition(BEGIN) |
| 368 | def received_negotiate_smb2_begin(self, pkt): |
| 369 | if SMB2_Negotiate_Protocol_Request in pkt: |
| 370 | self.SMB2 = True |
| 371 | raise self.NEGOTIATED().action_parameters(pkt) |
| 372 | |
| 373 | @ATMT.action(received_negotiate_smb2_begin) |
| 374 | def on_negotiate_smb2_begin(self, pkt): |
nothing calls this directly
no test coverage detected