(self, pkt)
| 346 | print("> %s" % s) |
| 347 | |
| 348 | def send(self, pkt): |
| 349 | ForceSign, ForceEncrypt = self.NextForceSign, self.NextForceEncrypt |
| 350 | self.NextForceSign = self.NextForceEncrypt = False |
| 351 | return super(SMB_Server, self).send( |
| 352 | pkt, |
| 353 | Compounded=self.NextCompound, |
| 354 | ForceSign=ForceSign, |
| 355 | ForceEncrypt=ForceEncrypt, |
| 356 | ) |
| 357 | |
| 358 | @ATMT.state(initial=1) |
| 359 | def BEGIN(self): |
no outgoing calls
no test coverage detected