(self)
| 244 | |
| 245 | @ATMT.condition(BEGIN) |
| 246 | def continue_smb2(self): |
| 247 | if self.SMB2: # Directly started in SMB2 |
| 248 | self.smb_header = DirectTCP() / SMB2_Header(PID=0xFEFF) |
| 249 | raise self.SMB2_NEGOTIATE() |
| 250 | |
| 251 | @ATMT.condition(BEGIN, prio=1) |
| 252 | def send_negotiate(self): |
nothing calls this directly
no test coverage detected