Method
send
(self, x, Compounded=False, ForceSign=False, ForceEncrypt=False, **kwargs)
Source from the content-addressed store, hash-verified
| 4764 | return pkt |
| 4765 | |
| 4766 | def send(self, x, Compounded=False, ForceSign=False, ForceEncrypt=False, **kwargs): |
| 4767 | for pkt in self.session.out_pkt( |
| 4768 | x, Compounded=Compounded, ForceSign=ForceSign, ForceEncrypt=ForceEncrypt |
| 4769 | ): |
| 4770 | return super(SMBStreamSocket, self).send(pkt, **kwargs) |
| 4771 | |
| 4772 | @staticmethod |
| 4773 | def select(sockets, remain=conf.recv_poll_rate): |
Callers
nothing calls this directly
Tested by
no test coverage detected