(sockets, remain=conf.recv_poll_rate)
| 4771 | |
| 4772 | @staticmethod |
| 4773 | def select(sockets, remain=conf.recv_poll_rate): |
| 4774 | if any(getattr(x, "queue", None) for x in sockets): |
| 4775 | return [x for x in sockets if isinstance(x, SMBStreamSocket) and x.queue] |
| 4776 | return select_objects(sockets, remain=remain) |
| 4777 | |
| 4778 | |
| 4779 | class SMBSession(DefaultSession): |
nothing calls this directly
no test coverage detected