Verbose print (if enabled)
(self, s="")
| 336 | return self.sock.session |
| 337 | |
| 338 | def vprint(self, s=""): |
| 339 | """ |
| 340 | Verbose print (if enabled) |
| 341 | """ |
| 342 | if self.verb: |
| 343 | if conf.interactive: |
| 344 | log_interactive.info("> %s", s) |
| 345 | else: |
| 346 | print("> %s" % s) |
| 347 | |
| 348 | def send(self, pkt): |
| 349 | ForceSign, ForceEncrypt = self.NextForceSign, self.NextForceEncrypt |
no outgoing calls
no test coverage detected